-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.16 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
{
"name": "root",
"private": true,
"workspaces": [
"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/",
"publishOnly:force": "lerna publish from-package --yes --ignore-scripts --no-git-tag-version --registry=https://registry.npmjs.org/",
"publishOnly": "lerna publish --ignore-scripts --no-git-tag-version --force-publish --registry=https://registry.npmjs.org/",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,less}\"",
"triones:publishOnly": "lerna publish --ignore-scripts --no-git-tag-version --force-publish --registry=https://moensun-npm.pkg.coding.net/npm/moensun/"
},
"dependencies": {
},
"devDependencies": {
"lerna": "^8.1.8"
}
}