Skip to content

Commit ec669ae

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

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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 .",
17+
"lint:fix": "yarn lint -- --fix",
1418
"lint:docs": "eslint --ext js,vue,md docs --ignore-path .gitignore",
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:unit": "cross-env TARGET=dev yarn jest",
1924
"test:unit:browser": "cross-env TEST_ENV=browser TARGET=browser NODE_ENV=browser karma start ./test/setup/karma.config.js",

0 commit comments

Comments
 (0)