Skip to content

Commit 93b1eb1

Browse files
committed
chore: updates
1 parent e62e9d4 commit 93b1eb1

File tree

8 files changed

+12
-169
lines changed

8 files changed

+12
-169
lines changed

e2e/animation-examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"nativescript-theme-core": "~1.0.2",
2626
"reflect-metadata": "~0.1.8",
2727
"rxjs": "~6.5.5",
28-
"@nativescript/core": "~7.0.0-rc.9",
28+
"@nativescript/core": "~7.0.0-rc.12",
2929
"zone.js": "^0.10.3"
3030
},
3131
"devDependencies": {

e2e/tests-app-ng/app/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { platformNativeScript } from "@nativescript/angular";
22

33
import { AppModule } from "./app.module";
4-
import { enable } from "@nativescript/core/trace";
4+
import { Trace } from "@nativescript/core";
55

6-
enable();
6+
Trace.enable();
77

88
platformNativeScript().bootstrapModule(AppModule);

e2e/tests-app-ng/ngcc.config.js

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

e2e/tests-app-ng/package.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"nativescript-theme-core": "^1.0.4",
2626
"reflect-metadata": "~0.1.8",
2727
"rxjs": "~6.5.5",
28-
"@nativescript/core": "~6.5.8",
28+
"@nativescript/core": "~7.0.0-rc.12",
2929
"zone.js": "^0.10.3"
3030
},
3131
"devDependencies": {
@@ -38,22 +38,20 @@
3838
"copy-webpack-plugin": "~6.0.3",
3939
"filewalker": "^0.1.3",
4040
"lazy": "1.0.11",
41-
"nativescript-dev-webpack": "~1.5.1",
42-
"terser-webpack-plugin": "~2.2.0",
43-
"tslint": "^5.4.3",
44-
"typescript": "~3.9.0",
45-
"webpack": "~4.43.0"
41+
"@nativescript/webpack": "~2.0.0-alpha.3",
42+
"typescript": "~3.9.0"
4643
},
4744
"scripts": {
48-
"tslint": "tslint --config tslint.json 'app/**/*.ts'",
4945
"clean": "npx rimraf hooks node_modules platforms package-lock.json",
5046
"setup": "cd ../../nativescript-angular && npm run prep.apps && cd ../e2e/tests-app-ng && npm run clean",
47+
"ngcc": "ngcc --properties es2015 module main --first-only",
48+
"postinstall": "npm run ngcc",
5149
"u": "update-ns-webpack",
5250
"e2e": "tsc -p e2e && mocha --opts ../config/mocha.opts --recursive e2e --appiumCapsLocation ../config/appium.capabilities.json",
5351
"e2e-watch": "tsc -p e2e --watch",
5452
"ns-verify-bundle": "ns-verify-bundle",
5553
"update-ns-webpack": "update-ns-webpack",
56-
"ios": "tns debug ios --env.aot --emulator --no-hmr",
57-
"android": "tns debug android --env.aot --emulator --no-hmr"
54+
"ios": "tns debug ios --emulator --no-hmr",
55+
"android": "tns debug android --emulator --no-hmr"
5856
}
5957
}

e2e/tests-app-ng/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"paths": {
1717
"~/*": [
1818
"app/*"
19-
],
20-
"*": [
21-
"./node_modules/*"
2219
]
2320
}
2421
},

e2e/tests-app-ng/tslint.json

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

nativescript-angular/animations/animation-driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface QueryResult {
2525
}
2626

2727
class Selector {
28-
private nsSelectors: CSSHelper.SelectorCore[];
28+
private nsSelectors: Array<any>;
2929
private classSelectors: string[];
3030

3131
constructor(rawSelector: string) {

nativescript-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@angular/platform-browser": "~10.0.0",
8080
"@angular/platform-browser-dynamic": "~10.0.0",
8181
"@angular/router": "~10.0.0",
82-
"@nativescript/core": "~7.0.0-rc.9",
82+
"@nativescript/core": "~7.0.0-rc.12",
8383
"codelyzer": "^5.2.0",
8484
"conventional-changelog-cli": "^2.0.34",
8585
"husky": "^4.2.5",

0 commit comments

Comments
 (0)