Skip to content

Commit

Permalink
chore(release): 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yxw007 committed Mar 18, 2022
1 parent db16e4e commit 2ea0697
Show file tree
Hide file tree
Showing 3 changed files with 1,280 additions and 44 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.1.1 (2022-03-18)


### Bug Fixes

* build assetsPublicPath config error ([a6bb800](https://github.com/yxw007/vue2.x-webpack.x/commit/a6bb8003bd1a500cb1a79afbfedb7339b7ad07d7))
* delete unuse code ([96ca94a](https://github.com/yxw007/vue2.x-webpack.x/commit/96ca94acf43e6b05e5a8d8fbc5a4c057a81c53c6))
* smp包裹一层会导致HtmlWebpackPlugin.getHook重新创建hooks对象,导致auto-external-plugin注册的alterAssetTags事件丢失,以至于无法注入配置的CDN,所以将smp挪至仅用于npm run build:analyzer方式打包查看分析结果 ([6c2e998](https://github.com/yxw007/vue2.x-webpack.x/commit/6c2e9986a408b326931b5bb00a3dfce7c96992dc))
28 changes: 25 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue2.x-webpack5.x",
"version": "1.0.0",
"version": "0.1.1",
"main": "index.js",
"author": "Potter <aa4790139@gmail.com>",
"license": "MIT",
Expand All @@ -14,7 +14,9 @@
"eslint": "eslint --ext .js,.vue src",
"prettier": "prettier --check src/**/*.{js,vue}",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier --write && yarn eslint --fix"
"lint:fix": "yarn prettier --write && yarn eslint --fix",
"commit": "cz",
"release": "standard-version -a"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
Expand All @@ -33,10 +35,12 @@
"babel-preset-vue": "^2.0.2",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.4",
"cross-env": "^5.2.0",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
Expand All @@ -47,6 +51,8 @@
"eslint-plugin-vue": "7.15.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^6.0.1",
"ora": "^1.2.0",
Expand All @@ -59,6 +65,7 @@
"sass-resources-loader": "^2.2.4",
"shelljs": "^0.7.6",
"speed-measure-webpack-plugin": "^1.5.0",
"standard-version": "^9.3.2",
"svg-sprite-loader": "^6.0.11",
"terser-webpack-plugin": "^5.3.1",
"thread-loader": "^3.0.4",
Expand All @@ -80,5 +87,20 @@
"last 1 version",
"> 1%",
"not IE <= 10"
]
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,vue}": [
"yarn lint:fix"
]
},
"config": {
"commitizen": {
"path": ".de_modules/cz-conventional-changelog"
}
}
}
Loading

0 comments on commit 2ea0697

Please sign in to comment.