diff --git a/CHANGELOG.md b/CHANGELOG.md index b0a33425d..b7e367175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ + +# [8.20.1](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.1) (2019-11-07) + +### Bug Fixes + +* add exports in `nativescript-angular` package for backwards compatibility # [8.20.0](https://github.com/NativeScript/nativescript-angular/compare/8.2.2...8.20.0) (2019-10-23) diff --git a/build/pack-scripts/pack-compat.ts b/build/pack-scripts/pack-compat.ts index 61cde5c88..1df263165 100644 --- a/build/pack-scripts/pack-compat.ts +++ b/build/pack-scripts/pack-compat.ts @@ -56,7 +56,7 @@ fs.emptyDirSync(tempFolderPath); fs.ensureDirSync(distFolderPath); // Install, run tsc and run ngc -execSync(`npm i && tsc && npm run ngc`, { +execSync(`npm i && npm run tsc && npm run ngc`, { cwd: nsAngularPackagePath }); diff --git a/nativescript-angular-package/forms/value-accessors/base-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/base-value-accessor.ts new file mode 100644 index 000000000..36c3a7f63 --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/base-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/base-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/lang-facade.ts b/nativescript-angular-package/lang-facade.ts new file mode 100644 index 000000000..994364fba --- /dev/null +++ b/nativescript-angular-package/lang-facade.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/lang-facade"; \ No newline at end of file diff --git a/nativescript-angular-package/package.json b/nativescript-angular-package/package.json index 83eb60e08..c0d951a42 100644 --- a/nativescript-angular-package/package.json +++ b/nativescript-angular-package/package.json @@ -7,11 +7,6 @@ "author": { "name": "NativeScript Team" }, - "contributors": [ - "Hristo Deshev ", - "Alexander Vakrilov ", - "Stanimira Vlaeva " - ], "nativescript": { "platforms": { "android": "6.0.0", @@ -46,6 +41,7 @@ }, "scripts": { "ngc": "ngc -p tsconfig.json", + "tsc": "tsc", "pack-with-scoped-version": "cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts" } } diff --git a/nativescript-angular/package.json b/nativescript-angular/package.json index b7f91a703..4e0527624 100644 --- a/nativescript-angular/package.json +++ b/nativescript-angular/package.json @@ -7,11 +7,6 @@ "author": { "name": "NativeScript Team" }, - "contributors": [ - "Hristo Deshev ", - "Alexander Vakrilov ", - "Stanimira Vlaeva " - ], "nativescript": { "platforms": { "android": "6.0.0", @@ -53,7 +48,7 @@ "@angular/platform-browser": "~8.2.0", "@angular/router": "~8.2.0", "rxjs": "^6.4.0", - "tns-core-modules": "^6.0.0 || >6.1.0-", + "tns-core-modules": "^6.2.0 || >6.3.0-", "typescript": "~3.5.3", "zone.js": "^0.9.1" },