本人微信公衆號:前端修煉之路,歡迎關注。css
再過一天,就是2019年了,在這裏祝你們新年快樂,闔家歡樂,萬事大吉。🎅🎅🎅html
在文章以前,簡單的回顧一下2018主要完成的事情,與君分享,共同進步。💪💪💪前端
如下是正文。webpack
以前的文章學習瞭如何加載資源,這一節學習如何將資源輸出。git
對項目作一些修改,建立一個js文件。web
src/print.jsnpm
export default function printMe() {
console.log('I get called from print.js!');
}
複製代碼
在程序入口文件中,引用這個文件。這個文件的內容,對上一節的代碼作了修改。只保留了加載css樣式的代碼。數組
src/index.jsbash
import _ from 'lodash';
import printMe from './print.js'
import './style.css';
function component() {
let element = document.createElement('div');
let btn = document.createElement('button');
// Lodash, currently included via a script, is required for this line to work
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
element.classList.add('hello');
// add a button to print log
btn.innerHTML = 'Click me and check the console!';
btn.onclick = printMe;
element.appendChild(btn);
return element;
}
document.body.appendChild(component());
複製代碼
修改配置文件,將新增長的文件進行打包。微信
webpack.config.js
const path = require('path');
module.exports = {
entry: {
app: './src/index.js',
print: './src/print.js' // 也能夠不打包這個文件,由於在index.js中已經引入了
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}]
}
};
複製代碼
這時,配置文件的entry
入口,改爲了對象形式,容許傳入多個文件。其中的對象屬性名app
和print
,在輸出文件屬性output.filename
中以佔位符[name]
的形式展現。
由於加載了css
,因此添加了相應的loader。
注意:
其實在入口文件中,能夠不將
src/print.js
文件打包,由於在打包生成的dist/app.bundle.js
文件中,已經包含了src/print.js
文件中的內容。
在頁面文件中引用新打包好的文件。
dist/index.html
<!doctype html>
<html>
<head>
<title>Output Management</title>
<script src="./print.bundle.js"></script>
</head>
<body>
<script src="./app.bundle.js"></script>
</body>
</html>
複製代碼
最後執行打包命令npm run build
以後,會在dist
目錄發現新生成的打包文件。
如今設想一下,假如修改了原始文件index.js
和print.js
的名字,該怎麼辦呢?難道手動一個個去修改文件名嗎?若是文件數量擴大到20個呢?
經過webpack插件能夠很自動化的完成上面的需求。
添加html-webpack-plugin
和clean-webpack-plugin
這兩個插件。第一插件是用來生成html頁面的,會自動將output.filename
輸出文件添加到頁面中。第二個插件是用來清理/dist
目錄的,防止項目目錄過於雜亂。
首先安裝這兩個插件
npm install --save-dev html-webpack-plugin clean-webpack-plugin
複製代碼
而後修改配置文件,引用這兩個插件。
webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
entry: {
app: './src/index.js',
print: './src/print.js' // 也能夠不打包這個文件,由於在index.js中已經引入了
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}]
},
plugins:[
new HtmlWebpackPlugin({title: 'Output Management'}),
new CleanWebpackPlugin(['dist'])
]
};
複製代碼
在plugins
中,以數組的形式,添加了這兩個插件。html-webpack-plugin
接受的title
屬性,就是生成的html
頁面中title
。clean-webpack-plugin
接受的參數,就是要清理的目錄名稱。
如今若是執行打包命令npm run build
,會發現webpack先刪除了dist
目錄,而後生成相應的文件。若是打開index.html
文件,會發現咱們在header
部分引入的js文件,已經被webpack移動到了body
。說明咱們的配置文件生效了。
這樣的話,就解決了上面提到的問題,之後文件名字修改以後,只須要修改配置文件中相應名字,而後執行打包命令就能夠了。
說明: 我將本小節代碼託管到了騰訊雲開發者平臺,若是須要查看這節內容,請查找Output Management目錄便可。
以上就是指南手冊中的Output Management部分。總結一下主要內容:
下一篇筆記整理webpack官方文檔的指南手冊剩餘部分,敬請關注。
(待續)
相關文章