Skip to content

Commit

Permalink
Tbozhikov/release 8.20.1 (#2056)
Browse files Browse the repository at this point in the history
* fix: add exports for backwards compatibility

* chore: bump version

* release: cut the %s release

* fix: changelog

* chore: fix typescript compilation while pack compat pkg

* fix: re-add deleted line

* chore: bump the scoped package version
  • Loading branch information
tbozhikov authored Nov 8, 2019
1 parent 19f252d commit 097bd0e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
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";
3 changes: 2 additions & 1 deletion nativescript-angular-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativescript-angular",
"version": "8.20.0",
"version": "8.20.1",
"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",
Expand Down Expand Up @@ -41,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"
}
}
2 changes: 1 addition & 1 deletion nativescript-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nativescript/angular",
"version": "8.20.0",
"version": "8.20.1",
"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",
Expand Down

0 comments on commit 097bd0e

Please sign in to comment.