Skip to content

Commit 3b98c82

Browse files
Merge pull request #9394 from cmgustavo/chore/packages-01
Chore/packages: update dependencies due to "npm audit" suggestions
2 parents 0950356 + b2e22f3 commit 3b98c82

File tree

14 files changed

+7185
-7673
lines changed

14 files changed

+7185
-7673
lines changed

.angular-cli.json

Lines changed: 0 additions & 59 deletions
This file was deleted.

angular.json

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

app-template/config-template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<plugin name="cordova-plugin-uniquedeviceid" spec="1.3.2" />
7777
<plugin name="cordova-plugin-vibration" spec="3.1.0" />
7878
<plugin name="cordova-plugin-file" spec="6.0.1" />
79-
<plugin name="cordova-custom-config" spec="5.0.2" />
79+
<plugin name="cordova-custom-config" spec="https://github.com/cmgustavo/cordova-custom-config.git#3a1902fb700dc8c1e9ac9db592aa48d7d900cde0" />
8080
<plugin name="cordova-plugin-customurlscheme" spec="https://github.com/cmgustavo/Custom-URL-scheme.git#v4.0">
8181
<variable name="URL_SCHEME" value="bitcoin" />
8282
<variable name="SECOND_URL_SCHEME" value="*APPURI*" />

0 commit comments

Comments
 (0)