forked from Angular-RU/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkspace.json
More file actions
65 lines (65 loc) · 2.57 KB
/
Copy pathworkspace.json
File metadata and controls
65 lines (65 loc) · 2.57 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
{
"version": 2,
"projects": {
"cdk-demo": "apps/cdk-demo",
"excel-demo": "apps/excel-demo",
"flex-layout-demo": "apps/flex-layout-demo",
"http-demo": "apps/http-demo",
"logger-demo": "apps/logger-demo",
"tooltip-demo": "apps/tooltip-demo",
"virtual-table-demo": "apps/virtual-table-demo",
"ngxs-demo": "apps/ngxs-demo",
"cdk": "libs/cdk",
"commitlint": "libs/commitlint",
"dev-dependencies": "libs/dev-dependencies",
"eslint-config-enterprise": "libs/eslint-config-enterprise",
"eslint-plugin-enterprise": "libs/eslint-plugin-enterprise",
"jest": "libs/jest",
"ngxs": "libs/ngxs",
"prettier": "libs/prettier",
"renovate": "libs/renovate",
"typescript": "libs/typescript",
".platform": {
"root": "./",
"tags": ["scope:ignore"],
"targets": {
"prebuild": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"parallel": false,
"commands": [
"echo \"Prebuild core libraries:\"",
"nx build cdk",
"nx build jest",
"nx build eslint-plugin-enterprise"
]
}
},
"clean": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"parallel": true,
"commands": [
"rimraf ./dist",
"rimraf ./coverage",
"rimraf ./node_modules/@angular-ru",
"rimraf ./node_modules/.cache",
"rimraf ./apps/**/dist ./apps/**/.cache",
"rimraf ./libs/**/dist ./libs/**/.cache"
]
}
},
"format:eslint": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "eslint . --cache --cache-location ./node_modules/.cache/eslint --fix --ignore-pattern '**/file-suites/**'"
}
},
"format:prettier": {
"executor": "@nrwl/workspace:run-commands",
"options": { "command": "prettier '**/*.{ts,html,css,scss,md,js,json,yml}' --write" }
}
}
}
}
}