|
| 1 | +{ |
| 2 | + "version": 1, |
| 3 | + "projects": { |
| 4 | + "gridjs-angular": { |
| 5 | + "projectType": "library", |
| 6 | + "root": "libs/gridjs-angular", |
| 7 | + "sourceRoot": "libs/gridjs-angular/src", |
| 8 | + "prefix": "gridjs", |
| 9 | + "architect": { |
| 10 | + "build": { |
| 11 | + "builder": "@nrwl/angular:package", |
| 12 | + "options": { |
| 13 | + "tsConfig": "libs/gridjs-angular/tsconfig.lib.json", |
| 14 | + "project": "libs/gridjs-angular/ng-package.json" |
| 15 | + }, |
| 16 | + "configurations": { |
| 17 | + "production": { |
| 18 | + "tsConfig": "libs/gridjs-angular/tsconfig.lib.prod.json" |
| 19 | + } |
| 20 | + } |
| 21 | + }, |
| 22 | + "lint": { |
| 23 | + "builder": "@angular-devkit/build-angular:tslint", |
| 24 | + "options": { |
| 25 | + "tsConfig": [ |
| 26 | + "libs/gridjs-angular/tsconfig.lib.json", |
| 27 | + "libs/gridjs-angular/tsconfig.spec.json" |
| 28 | + ], |
| 29 | + "exclude": [ |
| 30 | + "**/node_modules/**", |
| 31 | + "!libs/gridjs-angular/**/*" |
| 32 | + ] |
| 33 | + } |
| 34 | + }, |
| 35 | + "test": { |
| 36 | + "builder": "@nrwl/jest:jest", |
| 37 | + "options": { |
| 38 | + "jestConfig": "libs/gridjs-angular/jest.config.js", |
| 39 | + "tsConfig": "libs/gridjs-angular/tsconfig.spec.json", |
| 40 | + "passWithNoTests": true, |
| 41 | + "setupFile": "libs/gridjs-angular/src/test-setup.ts" |
| 42 | + } |
| 43 | + }, |
| 44 | + "storybook": { |
| 45 | + "builder": "@nrwl/storybook:storybook", |
| 46 | + "options": { |
| 47 | + "uiFramework": "@storybook/angular", |
| 48 | + "port": 4400, |
| 49 | + "config": { |
| 50 | + "configFolder": "libs/gridjs-angular/.storybook" |
| 51 | + } |
| 52 | + }, |
| 53 | + "configurations": { |
| 54 | + "ci": { |
| 55 | + "quiet": true |
| 56 | + } |
| 57 | + } |
| 58 | + }, |
| 59 | + "build-storybook": { |
| 60 | + "builder": "@nrwl/storybook:build", |
| 61 | + "options": { |
| 62 | + "uiFramework": "@storybook/angular", |
| 63 | + "outputPath": "dist/storybook/gridjs-angular", |
| 64 | + "config": { |
| 65 | + "configFolder": "libs/gridjs-angular/.storybook" |
| 66 | + } |
| 67 | + }, |
| 68 | + "configurations": { |
| 69 | + "ci": { |
| 70 | + "quiet": true |
| 71 | + } |
| 72 | + } |
| 73 | + } |
| 74 | + }, |
| 75 | + "schematics": { |
| 76 | + "@nrwl/angular:component": { |
| 77 | + "style": "scss" |
| 78 | + } |
| 79 | + } |
| 80 | + }, |
| 81 | + "gridjs-angular-e2e": { |
| 82 | + "root": "apps/gridjs-angular-e2e", |
| 83 | + "sourceRoot": "apps/gridjs-angular-e2e/src", |
| 84 | + "projectType": "application", |
| 85 | + "architect": { |
| 86 | + "e2e": { |
| 87 | + "builder": "@nrwl/cypress:cypress", |
| 88 | + "options": { |
| 89 | + "cypressConfig": "apps/gridjs-angular-e2e/cypress.json", |
| 90 | + "tsConfig": "apps/gridjs-angular-e2e/tsconfig.e2e.json", |
| 91 | + "devServerTarget": "gridjs-angular:storybook" |
| 92 | + }, |
| 93 | + "configurations": { |
| 94 | + "ci": { |
| 95 | + "devServerTarget": "gridjs-angular:storybook:ci" |
| 96 | + } |
| 97 | + } |
| 98 | + }, |
| 99 | + "lint": { |
| 100 | + "builder": "@angular-devkit/build-angular:tslint", |
| 101 | + "options": { |
| 102 | + "tsConfig": [ |
| 103 | + "apps/gridjs-angular-e2e/tsconfig.e2e.json" |
| 104 | + ], |
| 105 | + "exclude": [ |
| 106 | + "**/node_modules/**", |
| 107 | + "!apps/gridjs-angular-e2e/**/*" |
| 108 | + ] |
| 109 | + } |
| 110 | + } |
| 111 | + } |
| 112 | + } |
| 113 | + }, |
| 114 | + "cli": { |
| 115 | + "defaultCollection": "@nrwl/angular" |
| 116 | + }, |
| 117 | + "schematics": { |
| 118 | + "@nrwl/angular:application": { |
| 119 | + "unitTestRunner": "jest", |
| 120 | + "e2eTestRunner": "cypress" |
| 121 | + }, |
| 122 | + "@nrwl/angular:library": { |
| 123 | + "unitTestRunner": "jest" |
| 124 | + } |
| 125 | + }, |
| 126 | + "defaultProject": "demo" |
| 127 | +} |
0 commit comments