File tree Expand file tree Collapse file tree 5 files changed +122
-149
lines changed Expand file tree Collapse file tree 5 files changed +122
-149
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ import { isDevMode } from "@angular/core" ;
18+ import { registerFramework } from "@firebase-ui/core" ;
19+
1720export { EmailLinkAuthFormComponent } from "./lib/auth/forms/email-link-auth-form/email-link-auth-form.component" ;
1821export { ForgotPasswordAuthFormComponent } from "./lib/auth/forms/forgot-password-auth-form/forgot-password-auth-form.component" ;
1922export { 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
4649export * from "./lib/provider" ;
50+
51+ if ( ! isDevMode ( ) ) {
52+ const pkgJson = require ( "../package.json" ) ;
53+ registerFramework ( "angular" , pkgJson . version ) ;
54+ }
You can’t perform that action at this time.
0 commit comments