diff --git a/.npmignore b/.npmignore index 02e20bf..d5069e8 100644 --- a/.npmignore +++ b/.npmignore @@ -9,4 +9,5 @@ lint-staged.config.js package-lock.json vue.config.js babel.config.js -src/ \ No newline at end of file +src/ +dist/ \ No newline at end of file diff --git a/README.md b/README.md index 424a883..46b2a3a 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,10 @@ npm run lint ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). + +# 小变动,比如修复bug等,版本号变动 v1.0.0->v1.0.1 +npm version patch +# 增加新功能,不影响现有功能,版本号变动 v1.0.0->v1.1.0 +npm version minor +# 破坏模块对向后的兼容性,版本号变动 v1.0.0->v2.0.0 +npm version major