forked from Vonage/rxzu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
160 lines (160 loc) · 4.39 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"version": 2,
"projects": {
"core": {
"root": "packages/core",
"sourceRoot": "packages/core/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/core/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/core"],
"options": {
"jestConfig": "packages/core/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/core",
"tsConfig": "packages/core/tsconfig.lib.json",
"packageJson": "packages/core/package.json",
"main": "packages/core/src/index.ts",
"assets": ["packages/core/*.md"]
}
}
}
},
"angular": {
"projectType": "library",
"root": "packages/angular",
"sourceRoot": "packages/angular/src",
"prefix": "rxzu",
"architect": {
"build": {
"executor": "@nrwl/angular:package",
"options": {
"tsConfig": "packages/angular/tsconfig.lib.json",
"project": "packages/angular/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "packages/angular/tsconfig.lib.prod.json"
}
}
},
"lint": {
"executor": "@nrwl/linter:lint",
"options": {
"tsConfig": [
"packages/angular/tsconfig.lib.json",
"packages/angular/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!packages/angular/**/*"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/angular"],
"options": {
"jestConfig": "packages/angular/jest.config.js",
"passWithNoTests": true
}
}
}
},
"angular-storybook": {
"projectType": "library",
"root": "packages/angular-storybook",
"sourceRoot": "packages/angular-storybook",
"prefix": "angularstorybook",
"architect": {
"storybook": {
"builder": "@nrwl/storybook:storybook",
"options": {
"uiFramework": "@storybook/angular",
"port": 4400,
"config": {
"configFolder": "packages/angular-storybook/.storybook"
}
},
"configurations": {
"ci": {
"quiet": true
}
}
},
"build": {
"builder": "@nrwl/storybook:build",
"options": {
"uiFramework": "@storybook/angular",
"outputPath": "dist/storybook/angular-storybook",
"config": {
"configFolder": "packages/angular-storybook/.storybook"
}
},
"configurations": {
"ci": {
"quiet": true
}
}
}
},
"schematics": {
"@nrwl/angular:component": {
"style": "scss"
}
}
},
"angular-e2e": {
"root": "apps/angular-e2e",
"sourceRoot": "apps/angular-e2e/src",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/angular-e2e/cypress.json",
"tsConfig": "apps/angular-e2e/tsconfig.e2e.json",
"devServerTarget": "angular-storybook:storybook"
},
"configurations": {
"ci": {
"devServerTarget": "angular-storybook:storybook:ci"
}
}
},
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"tsConfig": ["apps/angular-e2e/tsconfig.e2e.json"],
"exclude": ["**/node_modules/**", "!apps/angular-e2e/**"]
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/angular"
},
"generators": {
"@nrwl/angular:application": {
"unitTestRunner": "jest"
},
"@nrwl/angular:library": {
"unitTestRunner": "jest"
},
"@nrwl/angular:component": {
"style": "scss"
}
},
"defaultProject": "angular"
}