Skip to content

Commit 581a73f

Browse files
authored
Merge branch '@invertase/v7-development' into @invertase/mfa-enrollment
2 parents 2d6882e + 99753d9 commit 581a73f

File tree

5 files changed

+122
-149
lines changed

5 files changed

+122
-149
lines changed

examples/react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"@eslint/js": "^9.22.0",
2828
"@types/react": "catalog:",
2929
"@types/react-dom": "catalog:",
30-
"@vitejs/plugin-react": "^4.3.4",
30+
"@vitejs/plugin-react": "catalog:",
3131
"eslint": "^9.22.0",
3232
"eslint-plugin-react-hooks": "^5.2.0",
3333
"eslint-plugin-react-refresh": "^0.4.19",
3434
"globals": "^16.0.0",
3535
"prettier": "^3.1.1",
36-
"vite": "^6.3.1",
37-
"tailwindcss": "^4.1.4"
36+
"vite": "catalog:",
37+
"tailwindcss": "catalog:"
3838
}
3939
}

packages/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"prepare": "pnpm run build",
1919
"build": "pnpm run build:logos && ng-packagr -p ng-package.json",
2020
"build:logos": "tsx generate-logos.ts",
21-
"test": "jest",
21+
"test": "jest --silent",
2222
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
2323
"release": "pnpm pack --pack-destination ../../releases/"
2424
},

packages/angular/src/public-api.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
import { isDevMode } from "@angular/core";
18+
import { registerFramework } from "@firebase-ui/core";
19+
1720
export { EmailLinkAuthFormComponent } from "./lib/auth/forms/email-link-auth-form/email-link-auth-form.component";
1821
export { ForgotPasswordAuthFormComponent } from "./lib/auth/forms/forgot-password-auth-form/forgot-password-auth-form.component";
1922
export { PhoneAuthFormComponent } from "./lib/auth/forms/phone-auth-form/phone-auth-form.component";
@@ -44,3 +47,8 @@ export { ContentComponent } from "./lib/components/content/content.component";
4447

4548
// Provider
4649
export * from "./lib/provider";
50+
51+
if (!isDevMode()) {
52+
const pkgJson = require("../package.json");
53+
registerFramework("angular", pkgJson.version);
54+
}

0 commit comments

Comments
 (0)