Commit 7c5faab838b86acd276fc8582d7cc9681a7701b0

Authored by Marcelo Puebla
1 parent 4f5ba36cf4
Exists in master

Agregada dependencia de bootstrap.

Showing 1 changed file with 6 additions and 1 deletions   Show diff stats
1 { 1 {
2 "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 2 "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 "version": 1, 3 "version": 1,
4 "newProjectRoot": "projects", 4 "newProjectRoot": "projects",
5 "projects": { 5 "projects": {
6 "autoservicio": { 6 "autoservicio": {
7 "projectType": "application", 7 "projectType": "application",
8 "schematics": { 8 "schematics": {
9 "@schematics/angular:component": { 9 "@schematics/angular:component": {
10 "style": "scss" 10 "style": "scss"
11 } 11 }
12 }, 12 },
13 "root": "", 13 "root": "",
14 "sourceRoot": "src", 14 "sourceRoot": "src",
15 "prefix": "app", 15 "prefix": "app",
16 "architect": { 16 "architect": {
17 "build": { 17 "build": {
18 "builder": "@angular-devkit/build-angular:browser", 18 "builder": "@angular-devkit/build-angular:browser",
19 "options": { 19 "options": {
20 "outputPath": "dist/autoservicio", 20 "outputPath": "dist/autoservicio",
21 "index": "src/index.html", 21 "index": "src/index.html",
22 "main": "src/main.ts", 22 "main": "src/main.ts",
23 "polyfills": "src/polyfills.ts", 23 "polyfills": "src/polyfills.ts",
24 "tsConfig": "tsconfig.app.json", 24 "tsConfig": "tsconfig.app.json",
25 "assets": [ 25 "assets": [
26 "src/favicon.ico", 26 "src/favicon.ico",
27 "src/assets" 27 "src/assets"
28 ], 28 ],
29 "styles": [ 29 "styles": [
30 "node_modules/bootstrap/dist/css/bootstrap.min.css",
30 "src/styles.scss" 31 "src/styles.scss"
31 ], 32 ],
32 "scripts": [] 33 "scripts": [
34 "node_modules/jquery/dist/jquery.min.js",
35 "node_modules/popper.js/dist/umd/popper.min.js",
36 "node_modules/bootstrap/dist/js/bootstrap.min.js"
37 ]
33 }, 38 },
34 "configurations": { 39 "configurations": {
35 "production": { 40 "production": {
36 "fileReplacements": [ 41 "fileReplacements": [
37 { 42 {
38 "replace": "src/environments/environment.ts", 43 "replace": "src/environments/environment.ts",
39 "with": "src/environments/environment.prod.ts" 44 "with": "src/environments/environment.prod.ts"
40 } 45 }
41 ], 46 ],
42 "optimization": true, 47 "optimization": true,
43 "outputHashing": "all", 48 "outputHashing": "all",
44 "sourceMap": false, 49 "sourceMap": false,
45 "extractCss": true, 50 "extractCss": true,
46 "namedChunks": false, 51 "namedChunks": false,
47 "aot": true, 52 "aot": true,
48 "extractLicenses": true, 53 "extractLicenses": true,
49 "vendorChunk": false, 54 "vendorChunk": false,
50 "buildOptimizer": true, 55 "buildOptimizer": true,
51 "budgets": [ 56 "budgets": [
52 { 57 {
53 "type": "initial", 58 "type": "initial",
54 "maximumWarning": "2mb", 59 "maximumWarning": "2mb",
55 "maximumError": "5mb" 60 "maximumError": "5mb"
56 } 61 }
57 ] 62 ]
58 } 63 }
59 } 64 }
60 }, 65 },
61 "serve": { 66 "serve": {
62 "builder": "@angular-devkit/build-angular:dev-server", 67 "builder": "@angular-devkit/build-angular:dev-server",
63 "options": { 68 "options": {
64 "browserTarget": "autoservicio:build" 69 "browserTarget": "autoservicio:build"
65 }, 70 },
66 "configurations": { 71 "configurations": {
67 "production": { 72 "production": {
68 "browserTarget": "autoservicio:build:production" 73 "browserTarget": "autoservicio:build:production"
69 } 74 }
70 } 75 }
71 }, 76 },
72 "extract-i18n": { 77 "extract-i18n": {
73 "builder": "@angular-devkit/build-angular:extract-i18n", 78 "builder": "@angular-devkit/build-angular:extract-i18n",
74 "options": { 79 "options": {
75 "browserTarget": "autoservicio:build" 80 "browserTarget": "autoservicio:build"
76 } 81 }
77 }, 82 },
78 "test": { 83 "test": {
79 "builder": "@angular-devkit/build-angular:karma", 84 "builder": "@angular-devkit/build-angular:karma",
80 "options": { 85 "options": {
81 "main": "src/test.ts", 86 "main": "src/test.ts",
82 "polyfills": "src/polyfills.ts", 87 "polyfills": "src/polyfills.ts",
83 "tsConfig": "tsconfig.spec.json", 88 "tsConfig": "tsconfig.spec.json",
84 "karmaConfig": "karma.conf.js", 89 "karmaConfig": "karma.conf.js",
85 "assets": [ 90 "assets": [
86 "src/favicon.ico", 91 "src/favicon.ico",
87 "src/assets" 92 "src/assets"
88 ], 93 ],
89 "styles": [ 94 "styles": [
90 "src/styles.scss" 95 "src/styles.scss"
91 ], 96 ],
92 "scripts": [] 97 "scripts": []
93 } 98 }
94 }, 99 },
95 "lint": { 100 "lint": {
96 "builder": "@angular-devkit/build-angular:tslint", 101 "builder": "@angular-devkit/build-angular:tslint",
97 "options": { 102 "options": {
98 "tsConfig": [ 103 "tsConfig": [
99 "tsconfig.app.json", 104 "tsconfig.app.json",
100 "tsconfig.spec.json", 105 "tsconfig.spec.json",
101 "e2e/tsconfig.json" 106 "e2e/tsconfig.json"
102 ], 107 ],
103 "exclude": [ 108 "exclude": [
104 "**/node_modules/**" 109 "**/node_modules/**"
105 ] 110 ]
106 } 111 }
107 }, 112 },
108 "e2e": { 113 "e2e": {
109 "builder": "@angular-devkit/build-angular:protractor", 114 "builder": "@angular-devkit/build-angular:protractor",
110 "options": { 115 "options": {
111 "protractorConfig": "e2e/protractor.conf.js", 116 "protractorConfig": "e2e/protractor.conf.js",
112 "devServerTarget": "autoservicio:serve" 117 "devServerTarget": "autoservicio:serve"
113 }, 118 },
114 "configurations": { 119 "configurations": {
115 "production": { 120 "production": {
116 "devServerTarget": "autoservicio:serve:production" 121 "devServerTarget": "autoservicio:serve:production"
117 } 122 }
118 } 123 }
119 } 124 }
120 } 125 }
121 }}, 126 }},
122 "defaultProject": "autoservicio" 127 "defaultProject": "autoservicio"
123 } 128 }