Skip to content

Commit 097bd0e

Browse files
authored
Tbozhikov/release 8.20.1 (#2056)
* 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
1 parent 19f252d commit 097bd0e

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<a name="8.20.1"></a>
2+
# [8.20.1](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.1) (2019-11-07)
3+
4+
### Bug Fixes
5+
6+
* add exports in `nativescript-angular` package for backwards compatibility
17
<a name="8.20.0"></a>
28
# [8.20.0](https://github.com/NativeScript/nativescript-angular/compare/8.2.2...8.20.0) (2019-10-23)
39

Diff for: build/pack-scripts/pack-compat.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fs.emptyDirSync(tempFolderPath);
5656
fs.ensureDirSync(distFolderPath);
5757

5858
// Install, run tsc and run ngc
59-
execSync(`npm i && tsc && npm run ngc`, {
59+
execSync(`npm i && npm run tsc && npm run ngc`, {
6060
cwd: nsAngularPackagePath
6161
});
6262

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "@nativescript/angular/forms/value-accessors/base-value-accessor";

Diff for: nativescript-angular-package/lang-facade.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "@nativescript/angular/lang-facade";

Diff for: nativescript-angular-package/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-angular",
3-
"version": "8.20.0",
3+
"version": "8.20.1",
44
"description": "An Angular renderer that lets you build mobile apps with NativeScript.",
55
"homepage": "https://www.nativescript.org/",
66
"bugs": "https://github.com/NativeScript/nativescript-angular/issues",
@@ -41,6 +41,7 @@
4141
},
4242
"scripts": {
4343
"ngc": "ngc -p tsconfig.json",
44+
"tsc": "tsc",
4445
"pack-with-scoped-version": "cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts"
4546
}
4647
}

Diff for: nativescript-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/angular",
3-
"version": "8.20.0",
3+
"version": "8.20.1",
44
"description": "An Angular renderer that lets you build mobile apps with NativeScript.",
55
"homepage": "https://www.nativescript.org/",
66
"bugs": "https://github.com/NativeScript/nativescript-angular/issues",

0 commit comments

Comments
 (0)