|
3 | 3 | "version": 1,
|
4 | 4 | "newProjectRoot": "projects",
|
5 | 5 | "projects": {
|
6 |
| - "angular-boilerplate": { |
| 6 | + "arc": { |
7 | 7 | "projectType": "application",
|
8 | 8 | "schematics": {
|
9 | 9 | "@schematics/angular:component": {
|
10 | 10 | "style": "scss"
|
11 | 11 | }
|
12 | 12 | },
|
13 |
| - "root": "projects/angular-boilerplate", |
14 |
| - "sourceRoot": "projects/angular-boilerplate/src", |
| 13 | + "root": "projects/arc", |
| 14 | + "sourceRoot": "projects/arc/src", |
15 | 15 | "prefix": "arc",
|
16 | 16 | "architect": {
|
17 | 17 | "build": {
|
18 | 18 | "builder": "@angular-devkit/build-angular:browser",
|
19 | 19 | "options": {
|
20 |
| - "outputPath": "dist/angular-boilerplate", |
21 |
| - "index": "projects/angular-boilerplate/src/index.html", |
22 |
| - "main": "projects/angular-boilerplate/src/main.ts", |
| 20 | + "outputPath": "dist/arc", |
| 21 | + "index": "projects/arc/src/index.html", |
| 22 | + "main": "projects/arc/src/main.ts", |
23 | 23 | "polyfills": ["zone.js"],
|
24 |
| - "tsConfig": "projects/angular-boilerplate/tsconfig.app.json", |
| 24 | + "tsConfig": "projects/arc/tsconfig.app.json", |
25 | 25 | "inlineStyleLanguage": "scss",
|
26 | 26 | "assets": [
|
27 |
| - "projects/angular-boilerplate/src/favicon.ico", |
| 27 | + "projects/arc/src/favicon.ico", |
28 | 28 | {
|
29 | 29 | "glob": "**/*",
|
30 |
| - "input": "projects/shared-library/src/lib/assets/", |
| 30 | + "input": "projects/arc-lib/src/lib/assets/", |
31 | 31 | "output": "/assets/"
|
32 | 32 | }
|
33 | 33 | ],
|
34 | 34 | "styles": [
|
35 | 35 | "./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
|
36 | 36 | "node_modules/eva-icons/style/scss/eva-icons.scss",
|
37 | 37 | "node_modules/@nebular/theme/styles/prebuilt/dark.css",
|
38 |
| - "projects/angular-boilerplate/src/styles.scss" |
| 38 | + "projects/arc/src/styles.scss" |
39 | 39 | ],
|
40 | 40 | "scripts": []
|
41 | 41 | },
|
|
58 | 58 | "development": {
|
59 | 59 | "fileReplacements": [
|
60 | 60 | {
|
61 |
| - "replace": "projects/angular-boilerplate/src/environments/environment.ts", |
62 |
| - "with": "projects/angular-boilerplate/src/environments/environment.ts" |
| 61 | + "replace": "projects/arc/src/environments/environment.ts", |
| 62 | + "with": "projects/arc/src/environments/environment.ts" |
63 | 63 | }
|
64 | 64 | ],
|
65 | 65 | "index": {
|
66 |
| - "input": "projects/angular-boilerplate/src/index.html", |
| 66 | + "input": "projects/arc/src/index.html", |
67 | 67 | "output": "index.html"
|
68 | 68 | },
|
69 | 69 | "optimization": false,
|
|
76 | 76 | "budgets": [
|
77 | 77 | {
|
78 | 78 | "type": "initial",
|
79 |
| - "maximumWarning": "7mb", |
80 |
| - "maximumError": "7mb" |
| 79 | + "maximumWarning": "8mb", |
| 80 | + "maximumError": "8mb" |
81 | 81 | },
|
82 | 82 | {
|
83 | 83 | "type": "anyComponentStyle",
|
84 |
| - "maximumWarning": "6kb", |
85 |
| - "maximumError": "10kb" |
| 84 | + "maximumWarning": "100kb", |
| 85 | + "maximumError": "500kb" |
86 | 86 | }
|
87 | 87 | ]
|
88 | 88 | }
|
|
92 | 92 | "serve": {
|
93 | 93 | "builder": "@angular-devkit/build-angular:dev-server",
|
94 | 94 | "options": {
|
95 |
| - "browserTarget": "angular-boilerplate:build" |
| 95 | + "browserTarget": "arc:build" |
96 | 96 | },
|
97 | 97 | "configurations": {
|
98 | 98 | "production": {
|
99 |
| - "browserTarget": "angular-boilerplate:build:production" |
| 99 | + "browserTarget": "arc:build:production" |
100 | 100 | },
|
101 | 101 | "development": {
|
102 |
| - "browserTarget": "angular-boilerplate:build:development" |
| 102 | + "browserTarget": "arc:build:development" |
103 | 103 | }
|
104 | 104 | },
|
105 | 105 | "defaultConfiguration": "development"
|
106 | 106 | },
|
107 | 107 | "extract-i18n": {
|
108 | 108 | "builder": "@angular-devkit/build-angular:extract-i18n",
|
109 | 109 | "options": {
|
110 |
| - "browserTarget": "angular-boilerplate:build" |
| 110 | + "browserTarget": "arc:build" |
111 | 111 | }
|
112 | 112 | },
|
113 | 113 | "test": {
|
114 | 114 | "builder": "@angular-devkit/build-angular:karma",
|
115 | 115 | "options": {
|
116 | 116 | "polyfills": ["zone.js", "zone.js/testing"],
|
117 |
| - "tsConfig": "projects/angular-boilerplate/tsconfig.spec.json", |
| 117 | + "tsConfig": "projects/arc/tsconfig.spec.json", |
118 | 118 | "inlineStyleLanguage": "scss",
|
119 | 119 | "assets": [
|
120 |
| - "projects/angular-boilerplate/src/favicon.ico", |
| 120 | + "projects/arc/src/favicon.ico", |
121 | 121 | {
|
122 | 122 | "glob": "**/*",
|
123 |
| - "input": "projects/shared-library/src/lib/assets/", |
124 |
| - "output": "projects/shared-library/src/lib/assets/" |
| 123 | + "input": "projects/arc-lib/src/lib/assets/", |
| 124 | + "output": "projects/arc-lib/src/lib/assets/" |
125 | 125 | }
|
126 | 126 | ],
|
127 | 127 | "styles": [
|
128 |
| - "projects/angular-boilerplate/src/styles.scss", |
129 |
| - "projects/shared-library/src/lib/theme/styles/index.scss" |
| 128 | + "projects/arc/src/styles.scss", |
| 129 | + "projects/arc-lib/src/lib/theme/styles/index.scss" |
130 | 130 | ],
|
131 | 131 | "scripts": []
|
132 | 132 | }
|
133 | 133 | }
|
134 | 134 | }
|
135 | 135 | },
|
136 |
| - "shared-library": { |
| 136 | + "arc-lib": { |
137 | 137 | "projectType": "library",
|
138 |
| - "root": "projects/shared-library", |
139 |
| - "sourceRoot": "projects/shared-library/src", |
| 138 | + "root": "projects/arc-lib", |
| 139 | + "sourceRoot": "projects/arc-lib/src", |
140 | 140 | "prefix": "lib",
|
141 | 141 | "architect": {
|
142 | 142 | "build": {
|
143 | 143 | "builder": "@angular-devkit/build-angular:ng-packagr",
|
144 | 144 | "options": {
|
145 |
| - "project": "projects/shared-library/ng-package.json" |
| 145 | + "project": "projects/arc-lib/ng-package.json" |
146 | 146 | },
|
147 | 147 | "configurations": {
|
148 | 148 | "production": {
|
149 |
| - "tsConfig": "projects/shared-library/tsconfig.lib.prod.json" |
| 149 | + "tsConfig": "projects/arc-lib/tsconfig.lib.prod.json" |
150 | 150 | },
|
151 | 151 | "development": {
|
152 |
| - "tsConfig": "projects/shared-library/tsconfig.lib.json" |
| 152 | + "tsConfig": "projects/arc-lib/tsconfig.lib.json" |
153 | 153 | }
|
154 | 154 | },
|
155 | 155 | "defaultConfiguration": "production"
|
156 | 156 | },
|
157 | 157 | "test": {
|
158 | 158 | "builder": "@angular-devkit/build-angular:karma",
|
159 | 159 | "options": {
|
160 |
| - "tsConfig": "projects/shared-library/tsconfig.spec.json", |
| 160 | + "tsConfig": "projects/arc-lib/tsconfig.spec.json", |
161 | 161 | "polyfills": ["zone.js", "zone.js/testing"]
|
162 | 162 | }
|
163 | 163 | }
|
164 | 164 | }
|
165 | 165 | }
|
166 | 166 | },
|
167 |
| - "defaultProject": "angular-boilerplate", |
| 167 | + "defaultProject": "arc", |
168 | 168 | "cli": {
|
169 | 169 | "analytics": "dcf534a6-f2c3-4c9c-99f0-3de66c9162da"
|
170 | 170 | }
|
|
0 commit comments