From 5b67d7bd3888f8e8817f3f29c521e176d91c0ff2 Mon Sep 17 00:00:00 2001 From: SvetoslavTsenov Date: Sun, 12 May 2019 02:13:08 +0300 Subject: [PATCH 1/3] chore: bump versions to 6.0.0 --- tns-core-modules-widgets/package.json | 2 +- tns-core-modules/package.json | 2 +- tns-platform-declarations/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tns-core-modules-widgets/package.json b/tns-core-modules-widgets/package.json index 50ed097f7..46bab1160 100644 --- a/tns-core-modules-widgets/package.json +++ b/tns-core-modules-widgets/package.json @@ -1,6 +1,6 @@ { "name": "tns-core-modules-widgets", - "version": "5.4.0", + "version": "6.0.0", "description": "Native widgets used in the NativeScript framework.", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" diff --git a/tns-core-modules/package.json b/tns-core-modules/package.json index 91a26be78..2be229ac8 100644 --- a/tns-core-modules/package.json +++ b/tns-core-modules/package.json @@ -1,7 +1,7 @@ { "name": "tns-core-modules", "description": "Telerik NativeScript Core Modules", - "version": "5.4.0", + "version": "6.0.0", "homepage": "https://www.nativescript.org", "repository": { "type": "git", diff --git a/tns-platform-declarations/package.json b/tns-platform-declarations/package.json index b74919c3d..5ee16ea26 100644 --- a/tns-platform-declarations/package.json +++ b/tns-platform-declarations/package.json @@ -1,6 +1,6 @@ { "name": "tns-platform-declarations", - "version": "5.4.0", + "version": "6.0.0", "description": "Platform-specific TypeScript declarations for NativeScript for accessing native objects", "main": "", "scripts": { From 047dbe344c9f144fcc8e97eb4a118f67362b35d3 Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Wed, 15 May 2019 16:10:32 +0300 Subject: [PATCH 2/3] chore: revert widgets dep to next --- tns-core-modules/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tns-core-modules/package.json b/tns-core-modules/package.json index ca4282a73..91a26be78 100644 --- a/tns-core-modules/package.json +++ b/tns-core-modules/package.json @@ -26,7 +26,7 @@ "license": "Apache-2.0", "typings": "tns-core-modules.d.ts", "dependencies": { - "tns-core-modules-widgets": "5.4.0", + "tns-core-modules-widgets": "next", "tslib": "^1.9.3" }, "devDependencies": { From b97cf958ef6eec3fca2566b10abd13efbe910d97 Mon Sep 17 00:00:00 2001 From: Martin Yankov Date: Tue, 21 May 2019 10:58:11 +0300 Subject: [PATCH 3/3] chore: return http server with npx (#7254) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f0f559373..bc064268a 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "test-watch-ios": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync ios --path tests --watch\"", "prepublish": "echo \"Development reminder for setup\n - tns-core-modules: npm run setup\n - tns-core-modules-widgets: npm run setup-widgets\n\"", "typedoc": "typedoc --tsconfig tsconfig.typedoc.json --out bin/dist/apiref --includeDeclarations --name NativeScript --theme ./node_modules/nativescript-typedoc-theme --excludeExternals --externalPattern \"**/+(tns-core-modules|module).d.ts\"", - "dev-typedoc": "npm run typedoc && cd bin/dist/apiref && http-server", + "dev-typedoc": "npm run typedoc && cd bin/dist/apiref && npx http-server", "test-tsc-es2016": "npm run tsc -- -p tsconfig.public.es2016.json", "tslint": "tslint --config build/tslint.json 'tns-core-modules/**/*.ts' 'tests/**/*.ts' 'apps/**/*.ts' 'e2e/**/*.ts' -e '**/node_modules/**' -e '**/platforms/**'", "madge-ios": "tsc --skipLibCheck && tns prepare ios --path tests && madge --circular tests/platforms/ios/tests/app/tns_modules/tns-core-modules",