- package.json里的^和~有啥区别
-
这个其实就是说明你项目中可以用哪个版本的软件,例如:3.4.5类似MAJOR.MINOR.PATCH这种格式,这个叫sematic versioning, 官网地址(https://semver.org/)。
MAJOR: 引入了不向后兼容的API
MINOR:引入了向后兼容的API.
PATCH:修bug的版本
举个例子,一般发布API版本从1.0.0,修了四个bug,变成1.0.4,引入新的API,但是这些API向后兼容,那就变成1.1.0,再修两个bug,就变成1.1.2,如果新的版本加入了新API是不向后兼容的,可能会破坏依赖,这种版本就是2.0.0,以此类推
package.json的情况是,~3.4.5就是指3.4.x这样的版本,但是不超过3.5.0, ^3.4.5的意思就是3.x.x都是,但是低于4.0.0的版本。这样说就好理解了(具体看我上面的提供的链接)。
我们常见的npm install antd --save通常你在package.json看到的是3.13.0就是你可以使用3.x.x的版本但低于4.0.0.当然有规则就有例外,如果是0开头的,有些许不同,简单讲,可以将理解成~就成了,具体官方网页瞄一眼就明白了。
再说hot replacement module(HRM)之前,需要了解几个东西,我们在上次的例子里来继续做:
- html-webpack-plugin: 这个plugin可以帮我们生成html文件,比如如果不使用他,你打包了,js都到dist目录下(官方喜欢用dist,我们就把build改成dist),那你的html是不是还要自己手动引用这个新生成的地址,怎么自动化也帮我们把html生成并且把生成的dist目录下的js也引用进来呢,这个plugin就做这个事情,代码如下:
plugins:[
new HtmlWebpackPlugin({
//模板,可以指定模板,但是要指定loader,这里我们用html-loader
template: path.resolve(__dirname,'src','index.html'),
//输出文件的文件名字,默认就是index.html,路径是相对于webpackConfig.output.path路径
filename:'index.html',
//防止缓存,也就是生成的时候引用的时候,会有一个参数,这样就每次都去加载这个js,浏览器认为这是一个新的文件,有的人会做增量更新,其实道理差不多,就是用新的名字,让浏览器强制加载新的文件
hash:true,
//压缩的选项,字面意思,不知道的话,可以看下官网
minify:{
collapseWhitespace: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true,
removeAttributeQuotes:true
},
meta: {
'viewport': 'width=device-width, initial-scale=1, shrink-to-fit=no',
'theme-color': '#4285f4'
}
})
]
-
生成了html长这样,第一图是压缩的,第二图是format之后,因为我们制定了压缩,所以生成第一图这样的代码,这里要注意webpack.config.js里的publicpath,如果指定,那么,生成的js的地址会变成publicpath/bundle.js?71ac66103d2a这样的引用
HTML WEBPACK PLUGIN TEMPLATE.
- clean-webpack-plugin
我们之前有一个删除目录的npm包,webpack里也有相应的plugin可以做这个事情,代码如下:
plugins:[
new CleanWebpackPlugin(['dist']),
]
- 关于css, 本来想使用mini-css-extract-plugin,但是这个plugin目前不支持HRM,所以用老的就行
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
- 然后要配置webpack-dev-server和HotModuleReplacementPlugin
new webpack.HotModuleReplacementPlugin()
- Dev_server_plugin在webpack里这样配:
devServer: {
contentBase: './dist',
hot: true
},
- 所有安装的plugin都需要cnpm install,package.json如下:
{
"name": "webpack4",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hyyfrank/webpack4.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyyfrank/webpack4/issues"
},
"scripts": {
"build": "webpack --watch",
"dev": "webpack-dev-server"
},
"homepage": "https://github.com/hyyfrank/webpack4#readme",
"dependencies": {
"webpack": "^4.29.0"
},
"devDependencies": {
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.5",
"style-loader": "^0.23.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}
- 同时webpack.config.js最后长这样:
const path = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
entry: {
app: './src/index.js'
},
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
hot: true
},
mode: "development",
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src', 'index.html'),//模板
filename: 'index.html',
hash: true,//防止缓存
}),
new webpack.HotModuleReplacementPlugin()
],
output: {
publicPath: "",
path: path.resolve(__dirname, "dist"),
filename: "[name]-bundle.js"
},
}
最后效果如下:
- 有个字写[WDS] Hot Module Replacement enabled.说明hrm是好的,你修改下JS会发现立马自己更新。