Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<a name="8.20.1"></a>
# [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
<a name="8.20.0"></a>
# [8.20.0](https://github.com/NativeScript/nativescript-angular/compare/8.2.2...8.20.0) (2019-10-23)

Expand Down
2 changes: 1 addition & 1 deletion build/pack-scripts/pack-compat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
});

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "@nativescript/angular/forms/value-accessors/base-value-accessor";
1 change: 1 addition & 0 deletions nativescript-angular-package/lang-facade.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "@nativescript/angular/lang-facade";
6 changes: 1 addition & 5 deletions nativescript-angular-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
"author": {
"name": "NativeScript Team"
},
"contributors": [
"Hristo Deshev <hristo.deshev@telerik.com>",
"Alexander Vakrilov <alexander.vakrilov@progress.com>",
"Stanimira Vlaeva <Stanimira.Vlaeva@progress.com>"
],
"nativescript": {
"platforms": {
"android": "6.0.0",
Expand Down Expand Up @@ -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"
}
}
7 changes: 1 addition & 6 deletions nativescript-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
"author": {
"name": "NativeScript Team"
},
"contributors": [
"Hristo Deshev <hristo.deshev@telerik.com>",
"Alexander Vakrilov <alexander.vakrilov@progress.com>",
"Stanimira Vlaeva <Stanimira.Vlaeva@progress.com>"
],
"nativescript": {
"platforms": {
"android": "6.0.0",
Expand Down Expand Up @@ -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"
},
Expand Down