Skip to content

Commit 86e728e

Browse files
committed
chore: update changelog
1 parent 4343503 commit 86e728e

File tree

2 files changed

+67
-52
lines changed

2 files changed

+67
-52
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [1.2.1](https://github.com/nativescript/firebase/compare/1.2.0...1.2.1) (2022-04-01)
2+
3+
4+
### Bug Fixes
5+
6+
* **auth:** move ios instance setu ([57d6c3e](https://github.com/nativescript/firebase/commit/57d6c3ef6cd9a777c1c53d078dcb1c2451daf0d6))
7+
* **auth:** sendEmailVerification crash ([335222d](https://github.com/nativescript/firebase/commit/335222da87f0a6916d4872aa3f2f88121b9546e2))
8+
* **messaging:** replace simulator check ([70862a8](https://github.com/nativescript/firebase/commit/70862a884438b29058b422a4d04008427af04e3a))
9+
10+
11+
### Features
12+
13+
* publish native types ([#73](https://github.com/nativescript/firebase/issues/73)) ([f2c3ded](https://github.com/nativescript/firebase/commit/f2c3ded245555efe2e06684d98694662dc921514))
14+
15+
16+
117
## [1.2.0](https://github.com/nativescript/firebase/compare/1.1.5...1.2.0) (2022-03-21)
218

319

package.json

+51-52
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,53 @@
11
{
2-
"name": "plugins",
3-
"version": "1.2.0",
4-
"license": "MIT",
5-
"scripts": {
6-
"postinstall": "husky install && npx ts-patch install",
7-
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn config set ignore-engines true && ns package-manager set npm && yarn",
8-
"start": "nps",
9-
"add": "nx g @nativescript/plugin-tools:add-package",
10-
"add-angular": "nx g @nativescript/plugin-tools:add-angular",
11-
"config": "nx g @nativescript/plugin-tools:config",
12-
"publish-packages": "nx g @nativescript/plugin-tools:publish",
13-
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
14-
"remove-package": "nx g @nativescript/plugin-tools:remove-package",
15-
"add-demo": "nx g @nativescript/plugin-tools:add-demo",
16-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
17-
},
18-
"private": true,
19-
"devDependencies": {
20-
"@angular-devkit/build-angular": "^13.2.0",
21-
"@angular/animations": "^13.2.0",
22-
"@angular/common": "^13.2.0",
23-
"@angular/compiler": "^13.2.0",
24-
"@angular/compiler-cli": "^13.2.0",
25-
"@angular/core": "^13.2.0",
26-
"@angular/forms": "^13.2.0",
27-
"@angular/platform-browser": "^13.2.0",
28-
"@angular/platform-browser-dynamic": "^13.2.0",
29-
"@angular/router": "^13.2.0",
30-
"@nativescript/angular": "^13.0.0",
31-
"@nativescript/core": "~8.2.0",
32-
"@nativescript/plugin-tools": "3.0.3",
33-
"@nativescript/types": "~8.2.0",
34-
"@nativescript/webpack": "~5.0.5",
35-
"@ngtools/webpack": "^13.0.0",
36-
"conventional-changelog-cli": "^2.2.2",
37-
"husky": "^7.0.0",
38-
"nativescript-permissions": "1.3.11",
39-
"nativescript-vue": "~2.9.0",
40-
"nativescript-vue-template-compiler": "~2.9.0",
41-
"ng-packagr": "^13.2.0",
42-
"rxjs": "~7.5.0",
43-
"stacktrace-js": "~2.0.2",
44-
"typescript": "~4.5.5",
45-
"vue": "~2.6.12",
46-
"zone.js": "~0.11.1"
47-
},
48-
"lint-staged": {
49-
"**/*.{js,ts,scss,json,html}": [
50-
"npx prettier --write"
51-
]
52-
}
2+
"name": "plugins",
3+
"version": "1.2.1",
4+
"license": "MIT",
5+
"scripts": {
6+
"postinstall": "husky install && npx ts-patch install",
7+
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn config set ignore-engines true && ns package-manager set npm && yarn",
8+
"start": "nps",
9+
"add": "nx g @nativescript/plugin-tools:add-package",
10+
"add-angular": "nx g @nativescript/plugin-tools:add-angular",
11+
"config": "nx g @nativescript/plugin-tools:config",
12+
"publish-packages": "nx g @nativescript/plugin-tools:publish",
13+
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
14+
"remove-package": "nx g @nativescript/plugin-tools:remove-package",
15+
"add-demo": "nx g @nativescript/plugin-tools:add-demo",
16+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
17+
},
18+
"private": true,
19+
"devDependencies": {
20+
"@angular-devkit/build-angular": "^13.2.0",
21+
"@angular/animations": "^13.2.0",
22+
"@angular/common": "^13.2.0",
23+
"@angular/compiler": "^13.2.0",
24+
"@angular/compiler-cli": "^13.2.0",
25+
"@angular/core": "^13.2.0",
26+
"@angular/forms": "^13.2.0",
27+
"@angular/platform-browser": "^13.2.0",
28+
"@angular/platform-browser-dynamic": "^13.2.0",
29+
"@angular/router": "^13.2.0",
30+
"@nativescript/angular": "^13.0.0",
31+
"@nativescript/core": "~8.2.0",
32+
"@nativescript/plugin-tools": "3.0.3",
33+
"@nativescript/types": "~8.2.0",
34+
"@nativescript/webpack": "~5.0.5",
35+
"@ngtools/webpack": "^13.0.0",
36+
"conventional-changelog-cli": "^2.2.2",
37+
"husky": "^7.0.0",
38+
"nativescript-permissions": "1.3.11",
39+
"nativescript-vue": "~2.9.0",
40+
"nativescript-vue-template-compiler": "~2.9.0",
41+
"ng-packagr": "^13.2.0",
42+
"rxjs": "~7.5.0",
43+
"stacktrace-js": "~2.0.2",
44+
"typescript": "~4.5.5",
45+
"vue": "~2.6.12",
46+
"zone.js": "~0.11.1"
47+
},
48+
"lint-staged": {
49+
"**/*.{js,ts,scss,json,html}": [
50+
"npx prettier --write"
51+
]
52+
}
5353
}
54-

0 commit comments

Comments
 (0)