From 5cda2caea42a9441270f58846da8d6b4b6012a47 Mon Sep 17 00:00:00 2001 From: baileijun <594107299@qq.com> Date: Fri, 28 Jun 2024 15:40:15 +0800 Subject: [PATCH] readme --- .npmignore | 3 ++- README.md | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) 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