Skip to content

Commit 1291372

Browse files
committed
chore(*): release packages
1 parent cd763ce commit 1291372

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
"test:core:watch": "pnpm --filter=@invertase/firebaseui-core run test:unit:watch",
3333
"test:react:watch": "pnpm --filter=@invertase/firebaseui-react run test:unit:watch",
3434
"test:angular:watch": "pnpm --filter=@invertase/firebaseui-angular run test:watch",
35+
"version:bump:core": "pnpm --filter=@invertase/firebaseui-core run version:bump",
36+
"version:bump:translations": "pnpm --filter=@invertase/firebaseui-translations run version:bump",
37+
"version:bump:react": "pnpm --filter=@invertase/firebaseui-react run version:bump",
38+
"version:bump:angular": "pnpm --filter=@invertase/firebaseui-angular run version:bump",
39+
"version:bump:styles": "pnpm --filter=@invertase/firebaseui-styles run version:bump",
40+
"version:bump:all": "pnpm run version:bump:core && pnpm run version:bump:translations && pnpm run version:bump:react && pnpm run version:bump:styles && pnpm run version:bump:angular",
3541
"publish:tags:core": "pnpm --filter=@invertase/firebaseui-core run publish:tags",
3642
"publish:tags:translations": "pnpm --filter=@invertase/firebaseui-translations run publish:tags",
3743
"publish:tags:react": "pnpm --filter=@invertase/firebaseui-react run publish:tags",

packages/angular/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invertase/firebaseui-angular",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"files": [
55
"dist"
66
],
@@ -19,6 +19,7 @@
1919
"build": "pnpm run build:logos && ng-packagr -p ng-package.json",
2020
"build:logos": "tsx generate-logos.ts",
2121
"test": "jest --silent",
22+
"version:bump": "pnpm version patch",
2223
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
2324
"release": "pnpm pack --pack-destination ../../releases/"
2425
},

packages/core/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invertase/firebaseui-core",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Core authentication service for Firebase UI",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -34,6 +34,7 @@
3434
"test:integration": "vitest run tests",
3535
"test:integration:watch": "vitest integration",
3636
"test": "vitest run",
37+
"version:bump": "pnpm version patch",
3738
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
3839
"release": "pnpm run build && pnpm pack --pack-destination --pack-destination ../../releases/"
3940
},

packages/react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invertase/firebaseui-react",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"type": "module",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.js",
@@ -31,6 +31,7 @@
3131
"test:unit:watch": "vitest tests/unit",
3232
"test:integration": "vitest run tests/integration",
3333
"test:integration:watch": "vitest tests/integration",
34+
"version:bump": "pnpm version patch",
3435
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
3536
"release": "pnpm run build && pnpm pack --pack-destination --pack-destination ../../releases/"
3637
},

packages/styles/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invertase/firebaseui-styles",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"type": "module",
55
"zshy": {
66
"exports": {
@@ -27,6 +27,7 @@
2727
"clean": "rimraf dist",
2828
"test": "vitest run",
2929
"test:watch": "vitest",
30+
"version:bump": "pnpm version patch",
3031
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
3132
"release": "pnpm run build && pnpm pack --pack-destination ../../releases/"
3233
},

packages/translations/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invertase/firebaseui-translations",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Translations for Firebase UI",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -26,6 +26,7 @@
2626
"clean": "rimraf dist",
2727
"test": "vitest run",
2828
"test:watch": "vitest",
29+
"version:bump": "pnpm version patch",
2930
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
3031
"release": "npm run build && pnpm pack --pack-destination ../../releases/"
3132
},

0 commit comments

Comments
 (0)