Skip to content

Commit

Permalink
feat(events): create project from branch step-05-solution
Browse files Browse the repository at this point in the history
  • Loading branch information
nlm-pro committed Nov 25, 2018
1 parent 24525fa commit e1d5cec
Show file tree
Hide file tree
Showing 30 changed files with 1,123 additions and 0 deletions.
99 changes: 99 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -1004,6 +1004,105 @@
}
}
}
},
"events-solution": {
"root": "steps/events-solution/",
"sourceRoot": "steps/events-solution/src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/events-solution",
"index": "steps/events-solution/src/index.html",
"main": "steps/events-solution/src/main.ts",
"polyfills": "steps/events-solution/src/polyfills.ts",
"tsConfig": "steps/events-solution/tsconfig.app.json",
"assets": [
"steps/events-solution/src/favicon.ico",
"steps/events-solution/src/assets"
],
"styles": [
"steps/events-solution/src/styles.css"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "steps/events-solution/src/environments/environment.ts",
"with": "steps/events-solution/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "events-solution:build"
},
"configurations": {
"production": {
"browserTarget": "events-solution:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "events-solution:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "steps/events-solution/src/test.ts",
"polyfills": "steps/events-solution/src/polyfills.ts",
"tsConfig": "steps/events-solution/tsconfig.spec.json",
"karmaConfig": "steps/events-solution/karma.conf.js",
"styles": [
"steps/events-solution/src/styles.css"
],
"scripts": [],
"assets": [
"steps/events-solution/src/favicon.ico",
"steps/events-solution/src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"steps/events-solution/tsconfig.app.json",
"steps/events-solution/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "angular-200",
Expand Down
11 changes: 11 additions & 0 deletions steps/events-solution/browserslist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
#
# For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11

0 comments on commit e1d5cec

Please sign in to comment.