Skip to content

Commit

Permalink
fix(*): fixed broken version script
Browse files Browse the repository at this point in the history
  • Loading branch information
MD4 committed Oct 12, 2023
1 parent 1c712f0 commit 7b5167c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "lerna run build",
"build:doc": "lerna run --parallel build:doc",
"build:watch": "lerna run --parallel build -- --watch",
"clean": "lerna clean && lerna run --parallel clean",
"clean": "lerna clean -y && lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"lint:commit": "commitlint --verbose --edit",
"lint:fix": "lerna run --parallel lint -- --fix",
Expand All @@ -18,7 +18,7 @@
"start": "lerna run start",
"test": "lerna run --parallel test",
"upgrade:all": "npm-upgrade && lerna exec --concurrency 1 npm-upgrade",
"preversion": "npm run clean && npm run lint && npm run build && npm run test",
"preversion": "npm run clean && npm i && npm run lint && npm run build && npm run test",
"version": "lerna version",
"postversion": "git push && git push --tags"
},
Expand Down

0 comments on commit 7b5167c

Please sign in to comment.