generated from nl-design-system/example
-
Notifications
You must be signed in to change notification settings - Fork 18
/
nx.json
48 lines (48 loc) · 1.06 KB
/
nx.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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"npmScope": "utrecht",
"implicitDependencies": {
".eslintrc.*.json": "*",
".eslintrc.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"package-lock.json": "*",
"tsconfig.json": "*"
},
"affected": {
"defaultBase": "main"
},
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": [
"build",
"lint",
"lint-eslint",
"lint-html",
"lint-md",
"lint-package-json",
"lint-package-lock",
"lint-stylelint",
"lint-prettier",
"lint-fix-prettier",
"lint-fix-eslint",
"lint-fix-stylelint",
"test"
],
"accessToken": "MDgxYjlmMTktY2JhYS00Yjc5LWJmYzItYzBkMjg2ODNhY2NifHJlYWQtd3JpdGU="
}
}
},
"targets": {
"lint-css": {
"inputs": ["**/*.{css,scss}"],
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "pnpm run lint:css"
}
}
}
}