-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.42 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
30
31
32
33
34
35
{
"name": "lerna-release-prototype",
"version": "0.0.1",
"description": "Lerna.js release prototype",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:test-registry": "docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio:4",
"build": "lerna run build",
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"modify:component-a": "echo \"#change\" >> packages/test-component-a/.changed && git add packages/test-component-a/.changed && git commit -m 'change test-component a'",
"modify:component-b": "echo \"#change\" >> packages/test-component-b/.changed && git add packages/test-component-b/.changed && git commit -m 'change test-component b'",
"modify:component-c": "echo \"#change\" >> packages/test-component-c/.changed && git add packages/test-component-c/.changed && git commit -m 'change test-component c'",
"publish-all": "lerna version --exact",
"publish-all:canary": "lerna publish --canary",
"create-topic-branch": "git checkout -b",
"finish-topic-branch": "git checkout master && git merge",
"delete-topic-branch": "git branch -d"
},
"repository": {
"type": "git",
"url": "[email protected]:zalari/prototypes/lerna-release-prototype.git"
},
"keywords": [
"lerna.js",
"monorepo",
"prototype"
],
"author": "Zalari GmbH",
"license": "ISC",
"devDependencies": {
"lerna": "^3.19.0"
}
}