-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 895 Bytes
/
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
{
"name": "colorshades-monorepo",
"private": true,
"prettier": {
"useTabs": false,
"tabWidth": 4,
"trailingComma": "es5"
},
"workspaces": [
"packages/*"
],
"repository": "https://github.com/hugovntr/colorshades.git",
"author": {
"name": "Hugo Ventura"
},
"scripts": {
"app": "yarn workspace app",
"lib": "yarn workspace colorshades",
"version-canary": "lerna version prerelease --sign-git-tag --preid canary --ignore-changes 'packages/app/**' --force-publish",
"version-stable": "lerna version --sign-git-tag --ignore-changes 'packages/app/**'",
"publish-canary": "lerna publish --canary",
"publish-stable": "lerna publish --force-publish --sign-git-tag",
"prepublish": "lerna run prepublish"
},
"devDependencies": {
"lerna": "^4.0.0"
}
}