美文网首页
webpack notes

webpack notes

作者: Yvan_Yang | 来源:发表于2016-08-23 15:32 被阅读0次

# setup and install dependency js libs

npm init

npm install webpack --save-dev      # This should be optional

npm install jquery --save

# add js file

touch main.js

touch index.html

webpack main.js ./bundle.js

touch webpack.config.js

rm ./bundle.js # no need this file, because it is configured from webpack.config.js

webpack # just run this command

## run webpack with a watch option

webpack -w

# babel loader

npm install babel-loader babel-core --save-dev

相关文章

网友评论

      本文标题:webpack notes

      本文链接:https://www.haomeiwen.com/subject/wnbllttx.html