-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add deploy via github pages. - update bootstrap
- Loading branch information
1 parent
dd050b7
commit 83985b3
Showing
3 changed files
with
326 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,161 +1,166 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"covid19-quindio": { | ||
"projectType": "application", | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"style": "scss" | ||
} | ||
}, | ||
"root": "", | ||
"sourceRoot": "src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/covid19-quindio", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"./node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"covid19-quindio": { | ||
"projectType": "application", | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"style": "scss" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
"root": "", | ||
"sourceRoot": "src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/covid19-quindio", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"./node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": true, | ||
"extractCss": true, | ||
"namedChunks": true, | ||
"aot": true, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "covid19-quindio:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "covid19-quindio:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "covid19-quindio:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js", | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"./node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"tsconfig.app.json", | ||
"tsconfig.spec.json", | ||
"cypress/tsconfig.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
}, | ||
"e2e": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve", | ||
"watch": true, | ||
"headless": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
"cypress-run": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
}, | ||
"cypress-open": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve", | ||
"watch": true, | ||
"headless": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
}, | ||
"deploy": { | ||
"builder": "angular-cli-ghpages:deploy", | ||
"options": {} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "covid19-quindio:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "covid19-quindio:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "covid19-quindio:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js", | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"./node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"tsconfig.app.json", | ||
"tsconfig.spec.json", | ||
"cypress/tsconfig.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
}, | ||
"e2e": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve", | ||
"watch": true, | ||
"headless": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
}, | ||
"cypress-run": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
}, | ||
"cypress-open": { | ||
"builder": "@briebug/cypress-schematic:cypress", | ||
"options": { | ||
"devServerTarget": "covid19-quindio:serve", | ||
"watch": true, | ||
"headless": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "covid19-quindio:serve:production" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "covid19-quindio", | ||
"cli": { | ||
"analytics": false | ||
} | ||
}, | ||
"defaultProject": "covid19-quindio", | ||
"cli": { | ||
"analytics": false | ||
} | ||
} |
Oops, something went wrong.