Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit e320b8b

Browse files
sis0k0hdeshev
authored andcommitted
feat: add support for [email protected] and [email protected]
1 parent 21d6807 commit e320b8b

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

Diff for: postinstall.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ configureDevDependencies(packageJson, function (add) {
5353
add("extract-text-webpack-plugin", "~2.0.0-beta.4");
5454

5555
if (isAngular) {
56-
add("@angular/compiler-cli", "2.3.1");
56+
add("@angular/compiler-cli", "2.4.3");
5757
add("@ngtools/webpack", "1.2.1");
58-
add("typescript", "~2.0.10");
59-
add("htmlparser2", "^3.9.2");
58+
add("typescript", "^2.0.10");
59+
add("htmlparser2", "~3.9.2");
6060
} else {
6161
add("awesome-typescript-loader", "~3.0.0-beta.9");
6262
}

Diff for: tsconfig.aot.json.template

+29-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,35 @@
99
"removeComments": false,
1010
"noImplicitAny": false,
1111
"suppressImplicitAnyIndexErrors": true,
12-
"types": []
13-
},
12+
"types": [],
13+
"baseUrl": ".",
14+
"paths": {
15+
"ui/*": ["node_modules/tns-core-modules/ui/*"],
16+
"platform": ["node_modules/tns-core-modules/platform"],
17+
"image-source": ["node_modules/tns-core-modules/image-source"],
18+
"xml": ["node_modules/tns-core-modules/xml"],
19+
"xhr": ["node_modules/tns-core-modules/xhr"],
20+
"text": ["node_modules/tns-core-modules/text"],
21+
"data": ["node_modules/tns-core-modules/data"],
22+
"fetch": ["node_modules/tns-core-modules/fetch"],
23+
"trace": ["node_modules/tns-core-modules/trace"],
24+
"fps-meter": ["node_modules/tns-core-modules/fps-meter"],
25+
"color": ["node_modules/tns-core-modules/color"],
26+
"application-settings": ["node_modules/tns-core-modules/application-settings"],
27+
"http": ["node_modules/tns-core-modules/http"],
28+
"camera": ["node_modules/tns-core-modules/camera"],
29+
"console": ["node_modules/tns-core-modules/console"],
30+
"timer": ["node_modules/tns-core-modules/timer"],
31+
"utils": ["node_modules/tns-core-modules/utils"],
32+
"location": ["node_modules/tns-core-modules/location"],
33+
"file-system": ["node_modules/tns-core-modules/file-system"],
34+
"application": ["node_modules/tns-core-modules/application"],
35+
"image-asset": ["node_modules/tns-core-modules/image-asset"],
36+
"connectivity": ["node_modules/tns-core-modules/connectivity"],
37+
"globals": ["node_modules/tns-core-modules/globals"]
38+
39+
}
40+
},
1441
"exclude": [
1542
"node_modules",
1643
"platforms"

0 commit comments

Comments
 (0)