Skip to content

Commit 3681110

Browse files
committed
chore(scripts): re add missing build scripts
Add back build scripts that were initially removed from jest migration
1 parent 4517528 commit 3681110

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: package.json

+5
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,19 @@
66
],
77
"scripts": {
88
"bootstrap": "lerna bootstrap",
9+
"build": "lerna run build",
910
"build:test": "lerna run build:test",
11+
"clean": "lerna clean --yes",
12+
"commit": "git-cz",
1013
"docs": "vuepress dev docs",
1114
"docs:build": "vuepress build docs",
1215
"flow": "flow check",
1316
"lint": "eslint --ext js,vue .",
1417
"lint:docs": "eslint --ext js,vue,md docs --ignore-path .gitignore",
18+
"lint:fix": "yarn lint -- --fix",
1519
"format": "prettier --write \"**/*.{js,json,vue,md}\"",
1620
"format:check": "prettier --check \"**/*.{js,json,vue,md}\"",
21+
"release": "yarn build && yarn test:unit:only && lerna publish --conventional-commits -m \"chore(release): publish %s\"",
1722
"test": "yarn format:check && yarn lint && yarn lint:docs && yarn flow && yarn test:types && yarn test:unit -w 1 && yarn test:unit:browser",
1823
"test:compat": "scripts/test-compat.sh",
1924
"test:unit": "cross-env TARGET=dev yarn jest",

0 commit comments

Comments
 (0)