File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed 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