|
1 | 1 | {
|
2 | 2 | "version": 1,
|
3 | 3 | "projects": {
|
4 |
| - "router": { |
5 |
| - "projectType": "library", |
6 |
| - "root": "libs/router", |
7 |
| - "sourceRoot": "libs/router/src", |
8 |
| - "prefix": "reactiveangular", |
9 |
| - "architect": { |
10 |
| - "build-package": { |
11 |
| - "builder": "@nrwl/angular:package", |
12 |
| - "options": { |
13 |
| - "tsConfig": "libs/router/tsconfig.lib.json", |
14 |
| - "project": "libs/router/ng-package.json", |
15 |
| - "buildableProjectDepsInPackageJsonType": "dependencies" |
16 |
| - }, |
17 |
| - "configurations": { |
18 |
| - "production": { |
19 |
| - "tsConfig": "libs/router/tsconfig.lib.prod.json" |
20 |
| - } |
21 |
| - } |
22 |
| - }, |
23 |
| - "build": { |
24 |
| - "builder": "@nrwl/workspace:run-commands", |
25 |
| - "options": { |
26 |
| - "parallel": false, |
27 |
| - "commands": [ |
28 |
| - { |
29 |
| - "command": "ng run router:build-package" |
30 |
| - }, |
31 |
| - { |
32 |
| - "command": "yarn tsc -p libs/router/tsconfig.schematics.json" |
33 |
| - } |
34 |
| - ] |
35 |
| - }, |
36 |
| - "configurations": { |
37 |
| - "production": {} |
38 |
| - } |
39 |
| - }, |
40 |
| - "lint": { |
41 |
| - "builder": "@angular-devkit/build-angular:tslint", |
42 |
| - "options": { |
43 |
| - "tsConfig": [ |
44 |
| - "libs/router/tsconfig.lib.json", |
45 |
| - "libs/router/tsconfig.spec.json" |
46 |
| - ], |
47 |
| - "exclude": ["**/node_modules/**", "!libs/router/**/*"] |
48 |
| - } |
49 |
| - }, |
50 |
| - "test": { |
51 |
| - "builder": "@nrwl/jest:jest", |
52 |
| - "options": { |
53 |
| - "jestConfig": "libs/router/jest.config.js", |
54 |
| - "setupFile": "libs/router/src/test-setup.ts", |
55 |
| - "passWithNoTests": true |
56 |
| - }, |
57 |
| - "outputs": ["coverage/libs/router"] |
58 |
| - } |
59 |
| - }, |
60 |
| - "schematics": {} |
61 |
| - }, |
62 | 4 | "example-app": {
|
63 | 5 | "projectType": "application",
|
64 | 6 | "schematics": {},
|
|
130 | 72 | "browserTarget": "example-app:build"
|
131 | 73 | }
|
132 | 74 | },
|
133 |
| - "lint": { |
134 |
| - "builder": "@angular-devkit/build-angular:tslint", |
135 |
| - "options": { |
136 |
| - "tsConfig": [ |
137 |
| - "apps/example-app/tsconfig.app.json", |
138 |
| - "apps/example-app/tsconfig.spec.json" |
139 |
| - ], |
140 |
| - "exclude": ["**/node_modules/**", "!apps/example-app/**/*"] |
141 |
| - } |
142 |
| - }, |
143 | 75 | "test": {
|
144 | 76 | "builder": "@nrwl/jest:jest",
|
145 | 77 | "options": {
|
|
148 | 80 | },
|
149 | 81 | "outputs": ["coverage/apps/example-app"]
|
150 | 82 | }
|
151 |
| - } |
| 83 | + }, |
| 84 | + "tags": [] |
152 | 85 | },
|
153 | 86 | "example-app-e2e": {
|
154 | 87 | "root": "apps/example-app-e2e",
|
|
167 | 100 | "devServerTarget": "example-app:serve:production"
|
168 | 101 | }
|
169 | 102 | }
|
170 |
| - }, |
171 |
| - "lint": { |
172 |
| - "builder": "@angular-devkit/build-angular:tslint", |
173 |
| - "options": { |
174 |
| - "tsConfig": ["apps/example-app-e2e/tsconfig.e2e.json"], |
175 |
| - "exclude": ["**/node_modules/**", "!apps/example-app-e2e/**/*"] |
176 |
| - } |
177 | 103 | }
|
178 |
| - } |
| 104 | + }, |
| 105 | + "tags": [], |
| 106 | + "implicitDependencies": ["example-app"] |
179 | 107 | },
|
180 | 108 | "recursive-routes": {
|
181 | 109 | "projectType": "application",
|
|
248 | 176 | "browserTarget": "recursive-routes:build"
|
249 | 177 | }
|
250 | 178 | },
|
251 |
| - "lint": { |
252 |
| - "builder": "@angular-devkit/build-angular:tslint", |
253 |
| - "options": { |
254 |
| - "tsConfig": [ |
255 |
| - "apps/recursive-routes/tsconfig.app.json", |
256 |
| - "apps/recursive-routes/tsconfig.spec.json" |
257 |
| - ], |
258 |
| - "exclude": ["**/node_modules/**", "!apps/recursive-routes/**/*"] |
259 |
| - } |
260 |
| - }, |
261 | 179 | "test": {
|
262 | 180 | "builder": "@nrwl/jest:jest",
|
263 | 181 | "options": {
|
|
266 | 184 | },
|
267 | 185 | "outputs": ["coverage/apps/recursive-routes"]
|
268 | 186 | }
|
269 |
| - } |
| 187 | + }, |
| 188 | + "tags": [] |
270 | 189 | },
|
271 | 190 | "recursive-routes-e2e": {
|
272 | 191 | "root": "apps/recursive-routes-e2e",
|
|
285 | 204 | "devServerTarget": "recursive-routes:serve:production"
|
286 | 205 | }
|
287 | 206 | }
|
288 |
| - }, |
289 |
| - "lint": { |
290 |
| - "builder": "@angular-devkit/build-angular:tslint", |
291 |
| - "options": { |
292 |
| - "tsConfig": ["apps/recursive-routes-e2e/tsconfig.e2e.json"], |
293 |
| - "exclude": ["**/node_modules/**", "!apps/recursive-routes-e2e/**/*"] |
294 |
| - } |
295 | 207 | }
|
296 |
| - } |
| 208 | + }, |
| 209 | + "tags": [], |
| 210 | + "implicitDependencies": ["recursive-routes"] |
297 | 211 | },
|
298 | 212 | "responsive-app": {
|
299 | 213 | "projectType": "application",
|
|
366 | 280 | "browserTarget": "responsive-app:build"
|
367 | 281 | }
|
368 | 282 | },
|
369 |
| - "lint": { |
370 |
| - "builder": "@angular-devkit/build-angular:tslint", |
371 |
| - "options": { |
372 |
| - "tsConfig": [ |
373 |
| - "apps/responsive-app/tsconfig.app.json", |
374 |
| - "apps/responsive-app/tsconfig.spec.json" |
375 |
| - ], |
376 |
| - "exclude": ["**/node_modules/**", "!apps/responsive-app/**/*"] |
377 |
| - } |
378 |
| - }, |
379 | 283 | "test": {
|
380 | 284 | "builder": "@nrwl/jest:jest",
|
381 | 285 | "options": {
|
|
384 | 288 | },
|
385 | 289 | "outputs": ["coverage/apps/responsive-app"]
|
386 | 290 | }
|
387 |
| - } |
| 291 | + }, |
| 292 | + "tags": [] |
388 | 293 | },
|
389 | 294 | "responsive-app-e2e": {
|
390 | 295 | "root": "apps/responsive-app-e2e",
|
|
403 | 308 | "devServerTarget": "responsive-app:serve:production"
|
404 | 309 | }
|
405 | 310 | }
|
406 |
| - }, |
407 |
| - "lint": { |
408 |
| - "builder": "@angular-devkit/build-angular:tslint", |
409 |
| - "options": { |
410 |
| - "tsConfig": ["apps/responsive-app-e2e/tsconfig.e2e.json"], |
411 |
| - "exclude": ["**/node_modules/**", "!apps/responsive-app-e2e/**/*"] |
412 |
| - } |
413 | 311 | }
|
414 |
| - } |
| 312 | + }, |
| 313 | + "tags": [], |
| 314 | + "implicitDependencies": ["responsive-app"] |
415 | 315 | },
|
416 | 316 | "route-restrictions": {
|
417 | 317 | "projectType": "application",
|
|
484 | 384 | "browserTarget": "route-restrictions:build"
|
485 | 385 | }
|
486 | 386 | },
|
487 |
| - "lint": { |
488 |
| - "builder": "@angular-devkit/build-angular:tslint", |
489 |
| - "options": { |
490 |
| - "tsConfig": [ |
491 |
| - "apps/route-restrictions/tsconfig.app.json", |
492 |
| - "apps/route-restrictions/tsconfig.spec.json" |
493 |
| - ], |
494 |
| - "exclude": ["**/node_modules/**", "!apps/route-restrictions/**/*"] |
495 |
| - } |
496 |
| - }, |
497 | 387 | "test": {
|
498 | 388 | "builder": "@nrwl/jest:jest",
|
499 | 389 | "options": {
|
|
502 | 392 | },
|
503 | 393 | "outputs": ["coverage/apps/route-restrictions"]
|
504 | 394 | }
|
505 |
| - } |
| 395 | + }, |
| 396 | + "tags": [] |
506 | 397 | },
|
507 | 398 | "route-restrictions-e2e": {
|
508 | 399 | "root": "apps/route-restrictions-e2e",
|
|
521 | 412 | "devServerTarget": "route-restrictions:serve:production"
|
522 | 413 | }
|
523 | 414 | }
|
| 415 | + } |
| 416 | + }, |
| 417 | + "tags": [], |
| 418 | + "implicitDependencies": ["route-restrictions"] |
| 419 | + }, |
| 420 | + "router": { |
| 421 | + "projectType": "library", |
| 422 | + "root": "libs/router", |
| 423 | + "sourceRoot": "libs/router/src", |
| 424 | + "prefix": "reactiveangular", |
| 425 | + "architect": { |
| 426 | + "build-package": { |
| 427 | + "builder": "@nrwl/angular:package", |
| 428 | + "options": { |
| 429 | + "tsConfig": "libs/router/tsconfig.lib.json", |
| 430 | + "project": "libs/router/ng-package.json", |
| 431 | + "buildableProjectDepsInPackageJsonType": "dependencies" |
| 432 | + }, |
| 433 | + "configurations": { |
| 434 | + "production": { |
| 435 | + "tsConfig": "libs/router/tsconfig.lib.prod.json" |
| 436 | + } |
| 437 | + } |
524 | 438 | },
|
525 |
| - "lint": { |
526 |
| - "builder": "@angular-devkit/build-angular:tslint", |
| 439 | + "build": { |
| 440 | + "builder": "@nrwl/workspace:run-commands", |
527 | 441 | "options": {
|
528 |
| - "tsConfig": ["apps/route-restrictions-e2e/tsconfig.e2e.json"], |
529 |
| - "exclude": [ |
530 |
| - "**/node_modules/**", |
531 |
| - "!apps/route-restrictions-e2e/**/*" |
| 442 | + "parallel": false, |
| 443 | + "commands": [ |
| 444 | + { |
| 445 | + "command": "ng run router:build-package" |
| 446 | + }, |
| 447 | + { |
| 448 | + "command": "yarn tsc -p libs/router/tsconfig.schematics.json" |
| 449 | + } |
532 | 450 | ]
|
| 451 | + }, |
| 452 | + "configurations": { |
| 453 | + "production": {} |
533 | 454 | }
|
| 455 | + }, |
| 456 | + "test": { |
| 457 | + "builder": "@nrwl/jest:jest", |
| 458 | + "options": { |
| 459 | + "jestConfig": "libs/router/jest.config.js", |
| 460 | + "setupFile": "libs/router/src/test-setup.ts", |
| 461 | + "passWithNoTests": true |
| 462 | + }, |
| 463 | + "outputs": ["coverage/libs/router"] |
534 | 464 | }
|
535 |
| - } |
536 |
| - } |
537 |
| - }, |
538 |
| - "cli": { |
539 |
| - "defaultCollection": "@nrwl/angular", |
540 |
| - "analytics": false |
541 |
| - }, |
542 |
| - "schematics": { |
543 |
| - "@nrwl/angular:application": { |
544 |
| - "unitTestRunner": "jest", |
545 |
| - "e2eTestRunner": "cypress" |
546 |
| - }, |
547 |
| - "@nrwl/angular:library": { |
548 |
| - "unitTestRunner": "jest" |
| 465 | + }, |
| 466 | + "schematics": {}, |
| 467 | + "tags": [] |
549 | 468 | }
|
550 |
| - }, |
551 |
| - "defaultProject": "router" |
| 469 | + } |
552 | 470 | }
|
0 commit comments