-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathproject.json
More file actions
85 lines (85 loc) · 2.17 KB
/
project.json
File metadata and controls
85 lines (85 loc) · 2.17 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "workspace-tools",
"$schema": "./node_modules/nx/schemas/project-schema.json",
"targets": {
"docker": {
"executor": "nx:run-commands",
"options": {
"command": "node ./bin/push_docker.js"
}
},
"changelog-production": {
"executor": "nx:run-commands",
"options": {
"command": "ts-node ./bin/changelog.ts production 2>&1 | grep -v '\\[dotenv@'"
}
},
"changelog-staging": {
"executor": "nx:run-commands",
"options": {
"command": "ts-node ./bin/changelog.ts staging 2>&1 | grep -v '\\[dotenv@'"
}
},
"changelog-rc": {
"executor": "nx:run-commands",
"options": {
"command": "ts-node ./bin/changelog.ts production master 2>&1 | grep -v '\\[dotenv@'"
}
},
"release-staging": {
"executor": "nx:run-commands",
"options": {
"command": "git checkout dev && git pull && ts-node ./bin/release_tag.ts staging"
}
},
"release-production": {
"executor": "nx:run-commands",
"options": {
"command": "git checkout master && git pull && ts-node ./bin/release_tag.ts production"
}
},
"release-custom": {
"executor": "nx:run-commands",
"options": {
"command": "npx ts-node ./bin/release_tag.ts"
}
},
"clean-jest": {
"executor": "nx:run-commands",
"options": {
"command": "jest --clearCache"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "echo \"workspace-tools has no tests\""
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "echo \"workspace-tools has no build\""
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "echo \"workspace-tools has no lint\""
}
},
"e2e": {
"executor": "nx:run-commands",
"options": {
"command": "echo \"workspace-tools has no e2e\""
}
},
"type-check": {
"executor": "nx:run-commands",
"options": {
"command": "echo \"workspace-tools has no type-check\""
}
}
},
"tags": ["scope:tooling"]
}