-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.json
113 lines (113 loc) · 3.4 KB
/
workspace.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"version": 2,
"cli": {
"defaultCollection": "@nrwl/web"
},
"defaultProject": "apps-wmaker",
"generators": {
"@nrwl/web:application": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/web:library": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "jest"
}
},
"projects": {
"watchmaker-js": {
"root": "packages/watchmaker/watchmaker",
"sourceRoot": "packages/watchmaker/watchmaker/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/watchmaker/watchmaker/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/watchmaker/watchmaker"],
"options": {
"jestConfig": "packages/watchmaker/watchmaker/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "./tools/executors/watchmaker-build:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/watchmaker/watchmaker",
"tsConfig": "packages/watchmaker/watchmaker/tsconfig.lib.json",
"project": "packages/watchmaker/watchmaker/package.json",
"entryFile": "packages/watchmaker/watchmaker/src/index.ts",
"babelConfig": "@nrwl/web/babel",
"rollupConfig": "packages/watchmaker/watchmaker/rollup.config.js",
"assets": [
{
"glob": "README.md",
"input": "libs/rxjs/example-lib/.",
"output": "."
}
]
}
}
}
},
"apps-wmaker": {
"projectType": "library",
"root": "packages/apps/wmaker",
"sourceRoot": "packages/apps/wmaker/src",
"targets": {
"build": {
"executor": "./tools/executors/watchmaker-build:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/apps/wmaker",
"entryFile": "packages/apps/wmaker/src/main.ts",
"project": "packages/apps/wmaker/package.json",
"babelConfig": "@nrwl/web/babel",
"rollupConfig": "packages/apps/wmaker/rollup.config.js",
"tsConfig": "packages/apps/wmaker/tsconfig.app.json",
"assets": [
{
"glob": "*",
"input": "packages/apps/wmaker/assets",
"output": "."
}
]
}
},
"serve": {
"executor": "@nrwl/web:dev-server",
"options": {
"buildTarget": "apps-wmaker:build"
},
"configurations": {
"production": {
"buildTarget": "apps-wmaker:build:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/apps/wmaker/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/apps/wmaker"],
"options": {
"jestConfig": "packages/apps/wmaker/jest.config.js",
"passWithNoTests": true
}
}
}
}
}
}