Skip to content

Commit

Permalink
feat(events): create project from branch step-05
Browse files Browse the repository at this point in the history
  • Loading branch information
nlm-pro committed Nov 25, 2018
1 parent 7d65fe1 commit 24525fa
Show file tree
Hide file tree
Showing 30 changed files with 1,056 additions and 0 deletions.
99 changes: 99 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,105 @@
}
}
}
},
"events": {
"root": "steps/events/",
"sourceRoot": "steps/events/src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/events",
"index": "steps/events/src/index.html",
"main": "steps/events/src/main.ts",
"polyfills": "steps/events/src/polyfills.ts",
"tsConfig": "steps/events/tsconfig.app.json",
"assets": [
"steps/events/src/favicon.ico",
"steps/events/src/assets"
],
"styles": [
"steps/events/src/styles.css"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "steps/events/src/environments/environment.ts",
"with": "steps/events/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:build"
},
"configurations": {
"production": {
"browserTarget": "events:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "events:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "steps/events/src/test.ts",
"polyfills": "steps/events/src/polyfills.ts",
"tsConfig": "steps/events/tsconfig.spec.json",
"karmaConfig": "steps/events/karma.conf.js",
"styles": [
"steps/events/src/styles.css"
],
"scripts": [],
"assets": [
"steps/events/src/favicon.ico",
"steps/events/src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"steps/events/tsconfig.app.json",
"steps/events/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "angular-200",
Expand Down
11 changes: 11 additions & 0 deletions steps/events/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
Loading

0 comments on commit 24525fa

Please sign in to comment.