Skip to content

Commit a2c6238

Browse files
committed
Generate new bookings app
1 parent 9c3fa4b commit a2c6238

File tree

15 files changed

+971
-1087
lines changed

15 files changed

+971
-1087
lines changed

angular.json

Lines changed: 125 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
"projects/train-platform/src/favicon.ico",
3030
"projects/train-platform/src/assets"
3131
],
32-
"styles": ["projects/train-platform/src/styles.css"],
32+
"styles": [
33+
"projects/train-platform/src/styles.css"
34+
],
3335
"scripts": []
3436
},
3537
"configurations": {
@@ -96,7 +98,128 @@
9698
}
9799
}
98100
}
101+
},
102+
"bookings": {
103+
"projectType": "application",
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"inlineTemplate": true,
107+
"inlineStyle": true,
108+
"skipTests": true
109+
},
110+
"@schematics/angular:class": {
111+
"skipTests": true
112+
},
113+
"@schematics/angular:directive": {
114+
"skipTests": true
115+
},
116+
"@schematics/angular:guard": {
117+
"skipTests": true
118+
},
119+
"@schematics/angular:interceptor": {
120+
"skipTests": true
121+
},
122+
"@schematics/angular:pipe": {
123+
"skipTests": true
124+
},
125+
"@schematics/angular:resolver": {
126+
"skipTests": true
127+
},
128+
"@schematics/angular:service": {
129+
"skipTests": true
130+
},
131+
"@schematics/angular:application": {
132+
"strict": true
133+
}
134+
},
135+
"root": "projects/bookings",
136+
"sourceRoot": "projects/bookings/src",
137+
"prefix": "mf",
138+
"architect": {
139+
"build": {
140+
"builder": "@angular-devkit/build-angular:browser",
141+
"options": {
142+
"outputPath": "projects/bookings/dist",
143+
"index": "projects/bookings/src/index.html",
144+
"main": "projects/bookings/src/main.ts",
145+
"polyfills": "projects/bookings/src/polyfills.ts",
146+
"tsConfig": "projects/bookings/tsconfig.app.json",
147+
"aot": true,
148+
"buildOptimizer": false,
149+
"optimization": false,
150+
"vendorChunk": true,
151+
"extractLicenses": false,
152+
"sourceMap": true,
153+
"namedChunks": true,
154+
"assets": [
155+
"projects/bookings/src/favicon.ico",
156+
"projects/bookings/src/assets"
157+
],
158+
"styles": [
159+
"projects/bookings/src/styles.css"
160+
],
161+
"scripts": []
162+
},
163+
"configurations": {
164+
"production": {
165+
"optimization": {
166+
"scripts": true,
167+
"styles": {
168+
"minify": true,
169+
"inlineCritical": false
170+
},
171+
"fonts": false
172+
},
173+
"budgets": [
174+
{
175+
"type": "initial",
176+
"maximumWarning": "500kb",
177+
"maximumError": "1mb"
178+
},
179+
{
180+
"type": "anyComponentStyle",
181+
"maximumWarning": "2kb",
182+
"maximumError": "4kb"
183+
}
184+
],
185+
"fileReplacements": [
186+
{
187+
"replace": "projects/bookings/src/environments/environment.ts",
188+
"with": "projects/bookings/src/environments/environment.prod.ts"
189+
}
190+
],
191+
"outputHashing": "all"
192+
}
193+
}
194+
},
195+
"serve": {
196+
"builder": "@angular-devkit/build-angular:dev-server",
197+
"options": {
198+
"browserTarget": "bookings:build"
199+
},
200+
"configurations": {
201+
"production": {
202+
"browserTarget": "bookings:build:production"
203+
}
204+
}
205+
},
206+
"extract-i18n": {
207+
"builder": "@angular-devkit/build-angular:extract-i18n",
208+
"options": {
209+
"browserTarget": "bookings:build"
210+
}
211+
},
212+
"lint": {
213+
"builder": "@angular-eslint/builder:lint",
214+
"options": {
215+
"lintFilePatterns": [
216+
"projects/bookings/**/*.ts",
217+
"projects/bookings/**/*.html"
218+
]
219+
}
220+
}
221+
}
99222
}
100223
},
101224
"defaultProject": "train-platform"
102-
}
225+
}

0 commit comments

Comments
 (0)