From 4a5d022b30a571d266f3c6faa09555431fe6e127 Mon Sep 17 00:00:00 2001 From: tbozhikov Date: Tue, 12 Nov 2019 12:40:13 +0200 Subject: [PATCH 1/2] fix: add exports for backwards compatibility --- nativescript-angular-package/app-host-view.ts | 1 + nativescript-angular-package/common.ts | 1 + nativescript-angular-package/common/detached-loader.ts | 1 + nativescript-angular-package/common/utils.ts | 1 + nativescript-angular-package/dom-adapter.ts | 1 + nativescript-angular-package/package.json | 2 +- nativescript-angular-package/schema-registry.ts | 1 + 7 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 nativescript-angular-package/app-host-view.ts create mode 100644 nativescript-angular-package/common.ts create mode 100644 nativescript-angular-package/common/detached-loader.ts create mode 100644 nativescript-angular-package/common/utils.ts create mode 100644 nativescript-angular-package/dom-adapter.ts create mode 100644 nativescript-angular-package/schema-registry.ts diff --git a/nativescript-angular-package/app-host-view.ts b/nativescript-angular-package/app-host-view.ts new file mode 100644 index 000000000..2afcaf55e --- /dev/null +++ b/nativescript-angular-package/app-host-view.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/app-host-view"; \ No newline at end of file diff --git a/nativescript-angular-package/common.ts b/nativescript-angular-package/common.ts new file mode 100644 index 000000000..8734f5c94 --- /dev/null +++ b/nativescript-angular-package/common.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common"; \ No newline at end of file diff --git a/nativescript-angular-package/common/detached-loader.ts b/nativescript-angular-package/common/detached-loader.ts new file mode 100644 index 000000000..1bf4ba6f3 --- /dev/null +++ b/nativescript-angular-package/common/detached-loader.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common/detached-loader"; \ No newline at end of file diff --git a/nativescript-angular-package/common/utils.ts b/nativescript-angular-package/common/utils.ts new file mode 100644 index 000000000..54c798aed --- /dev/null +++ b/nativescript-angular-package/common/utils.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common/utils"; \ No newline at end of file diff --git a/nativescript-angular-package/dom-adapter.ts b/nativescript-angular-package/dom-adapter.ts new file mode 100644 index 000000000..46373fefc --- /dev/null +++ b/nativescript-angular-package/dom-adapter.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/dom-adapter"; \ No newline at end of file diff --git a/nativescript-angular-package/package.json b/nativescript-angular-package/package.json index b42898ffd..33fc4f677 100644 --- a/nativescript-angular-package/package.json +++ b/nativescript-angular-package/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-angular", - "version": "8.20.1", + "version": "8.20.2", "description": "An Angular renderer that lets you build mobile apps with NativeScript.", "homepage": "https://www.nativescript.org/", "bugs": "https://github.com/NativeScript/nativescript-angular/issues", diff --git a/nativescript-angular-package/schema-registry.ts b/nativescript-angular-package/schema-registry.ts new file mode 100644 index 000000000..1b76567a7 --- /dev/null +++ b/nativescript-angular-package/schema-registry.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/schema-registry"; \ No newline at end of file From e8e93e83cab0a146a0b40edf84eaa28757ee68d1 Mon Sep 17 00:00:00 2001 From: tbozhikov Date: Tue, 12 Nov 2019 12:52:07 +0200 Subject: [PATCH 2/2] release: cut the 8.20.2 release --- CHANGELOG.md | 9 +++++++++ nativescript-angular/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7e367175..8dd8dcea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + +## [8.20.2](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.2) (2019-11-12) + + +### Bug Fixes + +* add exports in `nativescript-angular` package for backwards compatibility ([4a5d022](https://github.com/NativeScript/nativescript-angular/commit/4a5d022)) + + # [8.20.1](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.1) (2019-11-07) diff --git a/nativescript-angular/package.json b/nativescript-angular/package.json index 6aa4a56fe..bbf93ee95 100644 --- a/nativescript-angular/package.json +++ b/nativescript-angular/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/angular", - "version": "8.20.1", + "version": "8.20.2", "description": "An Angular renderer that lets you build mobile apps with NativeScript.", "homepage": "https://www.nativescript.org/", "bugs": "https://github.com/NativeScript/nativescript-angular/issues",