File tree 7 files changed +45
-40
lines changed
7 files changed +45
-40
lines changed Original file line number Diff line number Diff line change 2
2
"nativescript" : {
3
3
"id" : " org.nativescript.demong.AppSync" ,
4
4
"tns-android" : {
5
- "version" : " 6.0 .2"
5
+ "version" : " 6.1 .2"
6
6
},
7
7
"tns-ios" : {
8
- "version" : " 6.0.2 "
8
+ "version" : " 6.1.0 "
9
9
}
10
10
},
11
11
"description" : " NativeScript Application" ,
43
43
"@angular/platform-browser-dynamic" : " ~8.2.3" ,
44
44
"@angular/router" : " ~8.2.3" ,
45
45
"nativescript-angular" : " ~8.2.0" ,
46
- "nativescript-app-sync" : " file:../publish/package/nativescript-app-sync-1.0.6 .tgz" ,
46
+ "nativescript-app-sync" : " file:../publish/package/nativescript-app-sync-1.0.7 .tgz" ,
47
47
"nativescript-theme-core" : " ~1.0.6" ,
48
48
"reflect-metadata" : " ~0.1.13" ,
49
49
"rxjs" : " ~6.5.2" ,
50
- "tns-core-modules" : " ~6.0.7 " ,
50
+ "tns-core-modules" : " ~6.1.0 " ,
51
51
"zone.js" : " ~0.10.0"
52
52
},
53
53
"devDependencies" : {
54
54
"@angular/compiler-cli" : " ~8.2.3" ,
55
55
"@ngtools/webpack" : " ~8.2.2" ,
56
- "nativescript-dev-webpack" : " ~1.1.1 " ,
56
+ "nativescript-dev-webpack" : " ~1.2.0 " ,
57
57
"typescript" : " 3.4.5"
58
58
}
59
59
}
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ export class AppComponent {
42
42
console . log ( "AppSync: up to date" ) ;
43
43
} else if ( syncStatus === SyncStatus . UPDATE_INSTALLED ) {
44
44
console . log ( "AppSync: update installed" ) ;
45
+ } else {
46
+ console . log ( "AppSync: sync status: " + syncStatus ) ;
45
47
}
46
48
} ) ;
47
49
}
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "module" : " commonjs" ,
4
- "target" : " es5" ,
5
- "experimentalDecorators" : true ,
6
- "emitDecoratorMetadata" : true ,
7
- "noEmitHelpers" : true ,
8
- "noEmitOnError" : true ,
9
- "lib" : [
10
- " es6" ,
11
- " dom" ,
12
- " es2015.iterable"
13
- ],
14
- "baseUrl" : " ." ,
15
- "paths" : {
16
- "~/*" : [
17
- " src/*"
18
- ]
19
- }
20
- },
21
- "exclude" : [
22
- " node_modules" ,
23
- " platforms"
24
- ]
25
- }
2
+ "compilerOptions" : {
3
+ "module" : " commonjs" ,
4
+ "target" : " es5" ,
5
+ "experimentalDecorators" : true ,
6
+ "emitDecoratorMetadata" : true ,
7
+ "noEmitHelpers" : true ,
8
+ "noEmitOnError" : true ,
9
+ "skipLibCheck" : true ,
10
+ "lib" : [
11
+ " es6" ,
12
+ " dom" ,
13
+ " es2015.iterable"
14
+ ],
15
+ "baseUrl" : " ." ,
16
+ "paths" : {
17
+ "~/*" : [
18
+ " src/*"
19
+ ],
20
+ "*" : [
21
+ " ./node_modules/*"
22
+ ]
23
+ }
24
+ },
25
+ "exclude" : [
26
+ " node_modules" ,
27
+ " platforms"
28
+ ]
29
+ }
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ./tsconfig" ,
3
- "compilerOptions" : {
4
- "module" : " es2015 " ,
5
- "moduleResolution" : " node"
6
- }
2
+ "extends" : " ./tsconfig" ,
3
+ "compilerOptions" : {
4
+ "module" : " esNext " ,
5
+ "moduleResolution" : " node"
6
+ }
7
7
}
Original file line number Diff line number Diff line change @@ -35,8 +35,7 @@ module.exports = env => {
35
35
36
36
const {
37
37
// The 'appPath' and 'appResourcesPath' values are fetched from
38
- // the nsconfig.json configuration file
39
- // when bundling with `tns run android|ios --bundle`.
38
+ // the nsconfig.json configuration file.
40
39
appPath = "src" ,
41
40
appResourcesPath = "App_Resources" ,
42
41
@@ -197,7 +196,7 @@ module.exports = env => {
197
196
module : {
198
197
rules : [
199
198
{
200
- test : nsWebpack . getEntryPathRegExp ( appFullPath , entryPath ) ,
199
+ include : join ( appFullPath , entryPath ) ,
201
200
use : [
202
201
// Require all Android app components
203
202
platform === "android" && {
Original file line number Diff line number Diff line change 31
31
"ci.tslint" : " npm i && tslint --config '../tslint.json' 'demoapp/**/*.ts' --exclude '**/node_modules/**' --exclude '**/typings/**'"
32
32
},
33
33
"dependencies" : {
34
- "nativescript-app-sync" : " file:../publish/package/nativescript-app-sync-1.0.6 .tgz" ,
34
+ "nativescript-app-sync" : " file:../publish/package/nativescript-app-sync-1.0.7 .tgz" ,
35
35
"nativescript-theme-core" : " ~1.0.4" ,
36
36
"nativescript-unit-test-runner" : " 0.7.0" ,
37
37
"tns-core-modules" : " ~6.0.0"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript-app-sync" ,
3
- "version" : " 1.0.6 " ,
3
+ "version" : " 1.0.7 " ,
4
4
"description" : " Use AppSync to hot deploy updates to your app." ,
5
5
"main" : " app-sync" ,
6
6
"typings" : " index.d.ts" ,
68
68
"homepage" : " https://github.com/eddyverbruggen/nativescript-app-sync" ,
69
69
"readmeFilename" : " README.md" ,
70
70
"dependencies" : {
71
- "nativescript-app-sync-cli " : " ~1.0.1" ,
71
+ "nativescript-app-sync-sdk " : " ~1.0.1" ,
72
72
"nativescript-appversion" : " ~1.4.2" ,
73
73
"nativescript-hook" : " ~0.2.5" ,
74
74
"nativescript-zip" : " git+https://github.com/EddyVerbruggen/nativescript-zip.git#330fa2d"
You can’t perform that action at this time.
0 commit comments