标签:文件 示例 order port 文件的 poi eve install 打包
npm init -y
(c)npm install -D webpack
(c)npm install -D webpack-cli
# 查看webpack版本
(npx )webpack --version
src/index.js
document.write('Hello Webpack -Mazey')
dist/index.html
<!doctype html>
<html>
<head>
<title>Start Webpack</title>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>
webpack.config.js
const path = require('path')
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
}
项目命令行运行:
webpack --config webpack.config.js --mode development
# 出现
Hash: 1ae48c1f7dc49168e983
Version: webpack 4.6.0
Time: 63ms
Built at: 2018-05-03 14:37:02
Asset Size Chunks Chunk Names
bundle.js 2.84 KiB main [emitted] main
Entrypoint main = bundle.js
[./src/index.js] 38 bytes {main} [built]
此时 dist/ 下多了一个 bundle.js 文件, 打开 dist/index.html 出现 Hello Webpack -Mazey。
{
// ...
"scripts": {
"dev": "webpack --config webpack.config.js --mode development",
"build": "webpack --mode production"
},
// ...
}
# or
{
// ...
"scripts": {
"dev": "webpack-dev-server --devtool eval --progress --colors",
"deploy": "NODE_ENV=production webpack -p"
},
// ...
}
然后命令行运行 npm run dev
便等于 webpack --config webpack.config.js --mode development
。
entry: string|Array<string>
示例:
// ...
entry: './src/index.js'
// ...
# 等于
// ...
entry: {
main: './src/index.js'
}
// ...
entry: {[entryChunkName: string]: string|Array<string>}
示例:
// ...
entry: {
app: './src/app.js',
vendors: './src/vendors.js'
}
// ....
// ...
output: {
filename: <output filename>,
path: <path>
}
// ...
示例:
const path = require('path')
const config = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
}
module.exports = config
若配置多个入口,为保证每个文件具有唯一名称,需要用到占位符。
// ...
filename: '[name].js',
// ...
mode: string
设置 模式 后则不需要在命令后带上 --mode development
。
module: {
rules: [
{ test: <.*>, use: <loader> },
{ test: <.*>, use: <loader> }
]
}
示例:
const path = require('path')
const config = {
// ...
module: {
rules: [
{ test: /\.css$/, use: 'css-loader' }
]
}
}
module.exports = config
碰到“在 require()/import
语句中被解析为 .css 的路径”时,打包之前,先使用 css-loader 转换一下。
const <PluginName> = require(<plugin-name>)
// ...
plugins: [
new <PluginName>({
<attribute>: <value>
})
]
想要使用一个插件,你只需要 require()
它,然后把它添加到 plugins 数组中。
标签:文件 示例 order port 文件的 poi eve install 打包
原文地址:https://www.cnblogs.com/mazey/p/8987946.html