-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
29 lines (29 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "root",
"private": true,
"workspaces": [
"examples/*",
"formily/*",
"packages/*"
],
"scripts": {
"clean": "lerna clean",
"check:types": "tsc --project tsconfig.json --noEmit",
"build": "lerna run build",
"preversion": "yarn run build",
"version:beta": "lerna version prerelease --preid beta",
"release:github": "ts-node scripts/release release",
"release:force": "lerna publish from-package --yes --registry=https://registry.npmjs.org/",
"prelease:force": "lerna publish from-package --yes --dist-tag next",
"release": "lerna publish --registry=https://registry.npmjs.org/",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,less}\"",
"publish": "npm publish --registry=https://registry.npmjs.org/",
"publishOnly": "npm publish --ignore-scripts --registry=https://registry.npmjs.org/",
"triones:publishOnly": "npm publish --ignore-scripts --registry=https://moensun-npm.pkg.coding.net/npm/moensun/"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.1.3",
"lerna": "^8.1.9",
"prettier": "^3.2.5"
}
}