Skip to content

Commit cedae2f

Browse files
committed
chore: cleanup
1 parent 93b1eb1 commit cedae2f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+295
-239
lines changed

e2e/animation-examples/app/app.module.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ export function asyncBoot(): Function {
5252
/**
5353
* Uncomment to test APP_INITIALIZER
5454
*/
55-
// providers: [
56-
// {
57-
// provide: APP_INITIALIZER,
58-
// useFactory: asyncBoot,
59-
// multi: true
60-
// },
61-
// ],
55+
providers: [
56+
{
57+
provide: APP_INITIALIZER,
58+
useFactory: asyncBoot,
59+
multi: true
60+
},
61+
],
6262
schemas: [NO_ERRORS_SCHEMA],
6363
})
6464
export class AppModule {}

e2e/animation-examples/app/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { platformNativeScript, NativeScriptDebug } from "@nativescript/angular";
1+
import { platformNativeScriptDynamic, NativeScriptDebug } from "@nativescript/angular";
22
import { Trace, GridLayout, GridUnitType, ItemSpec, VerticalAlignment } from "@nativescript/core";
33

44
import { AppModule } from "./app.module";
@@ -87,7 +87,7 @@ class LaunchAnimation extends GridLayout {
8787
}
8888
}
8989

90-
platformNativeScript({
90+
platformNativeScriptDynamic({
9191
launchView: new LaunchAnimation(),
9292
// backgroundColor: 'purple'
9393
}).bootstrapModule(AppModule);

e2e/animation-examples/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"nativescript": {
77
"id": "org.nativescript.ng4animations",
88
"tns-ios": {
9-
"version": "6.5.1"
9+
"version": "6.5.2"
1010
},
1111
"tns-android": {
1212
"version": "latest"
@@ -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.12",
28+
"@nativescript/core": "rc",
2929
"zone.js": "^0.10.3"
3030
},
3131
"devDependencies": {
@@ -43,7 +43,7 @@
4343
"mochawesome": "~6.1.1",
4444
"node-sass": "~4.14.1",
4545
"nativescript-css-loader": "~0.26.0",
46-
"@nativescript/webpack": "~2.0.0-alpha.3",
46+
"@nativescript/webpack": "rc",
4747
"typescript": "~3.9.0"
4848
},
4949
"scripts": {

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 @@
1-
import { platformNativeScript } from "@nativescript/angular";
1+
import { platformNativeScriptDynamic } from "@nativescript/angular";
22

33
import { AppModule } from "./app.module";
44
import { Trace } from "@nativescript/core";
55

66
Trace.enable();
77

8-
platformNativeScript().bootstrapModule(AppModule);
8+
platformNativeScriptDynamic().bootstrapModule(AppModule);

e2e/tests-app-ng/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"nativescript": {
77
"id": "org.nativescript.testsappng",
88
"tns-ios": {
9-
"version": "6.5.0"
9+
"version": "6.5.2"
1010
},
1111
"tns-android": {
1212
"version": "6.5.0"
@@ -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": "~7.0.0-rc.12",
28+
"@nativescript/core": "~7.0.0-rc.18",
2929
"zone.js": "^0.10.3"
3030
},
3131
"devDependencies": {
@@ -35,7 +35,6 @@
3535
"babel-types": "6.24.1",
3636
"babylon": "6.17.0",
3737
"codelyzer": "^5.1.0",
38-
"copy-webpack-plugin": "~6.0.3",
3938
"filewalker": "^0.1.3",
4039
"lazy": "1.0.11",
4140
"@nativescript/webpack": "~2.0.0-alpha.3",

nativescript-angular-package/.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.tgz
2+
dist
23

34
*.ts
45
!*.d.ts
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@nativescript/angular/app-host-view";
1+
export * from "@nativescript/angular";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@nativescript/angular/common";
1+
export * from "@nativescript/angular";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@nativescript/angular/dom-adapter";
1+
export * from "@nativescript/angular";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@nativescript/angular/element-registry";
1+
export * from "@nativescript/angular";

0 commit comments

Comments
 (0)