File tree Expand file tree Collapse file tree 5 files changed +7
-10
lines changed
packages/firebaseui-angular Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 25
25
"@angular/platform-server" : " ^19.1.0" ,
26
26
"@angular/router" : " ^19.1.0" ,
27
27
"@angular/ssr" : " ^19.1.7" ,
28
- "@firebase-ui/angular" : " https://github.com/firebase/firebaseui-web/raw/refs/heads/v7-alpha/releases/firebase-ui-angular-0.0.1.tgz " ,
29
- "@firebase-ui/core" : " https://github.com/firebase/firebaseui-web/raw/refs/heads/v7-alpha/releases/firebase-ui-core-0.0.1.tgz " ,
30
- "@firebase-ui/styles" : " https://github.com/firebase/firebaseui-web/raw/refs/heads/v7-alpha/releases/firebase-ui-styles-0.0.1.tgz " ,
31
- "@firebase-ui/translations" : " https://github.com/firebase/firebaseui-web/raw/refs/heads/v7-alpha/releases/firebase-ui-translations-0.0.1.tgz " ,
28
+ "@firebase-ui/angular" : " workspace:* " ,
29
+ "@firebase-ui/core" : " workspace:* " ,
30
+ "@firebase-ui/styles" : " workspace:* " ,
31
+ "@firebase-ui/translations" : " workspace:* " ,
32
32
"@tailwindcss/postcss" : " ^4.0.6" ,
33
33
"express" : " ^4.18.2" ,
34
34
"postcss" : " ^8.5.2" ,
Original file line number Diff line number Diff line change @@ -20,13 +20,11 @@ import {
20
20
isDevMode ,
21
21
} from '@angular/core' ;
22
22
import { provideRouter } from '@angular/router' ;
23
-
24
23
import { routes } from './app.routes' ;
25
24
import {
26
25
provideClientHydration ,
27
26
withEventReplay ,
28
27
} from '@angular/platform-browser' ;
29
-
30
28
import { provideFirebaseApp , initializeApp } from '@angular/fire/app' ;
31
29
import { provideAuth , getAuth , connectAuthEmulator } from '@angular/fire/auth' ;
32
30
import {
@@ -47,12 +45,10 @@ export const appConfig: ApplicationConfig = {
47
45
provideFirebaseApp ( ( ) => initializeApp ( firebaseConfig ) ) ,
48
46
provideAuth ( ( ) => {
49
47
const auth = getAuth ( ) ;
50
-
51
48
if ( isDevMode ( ) ) {
52
49
/** Enable emulators in development */
53
50
connectAuthEmulator ( auth , 'http://localhost:9099' ) ;
54
51
}
55
-
56
52
return auth ;
57
53
} ) ,
58
54
provideFirebaseUI ( ( apps ) => initializeUI ( { app : apps [ 0 ] } ) ) ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " ../../node_modules/ng-packagr/ng-package.schema.json" ,
3
- "dest" : " ../../ dist/firebaseui-angular " ,
3
+ "dest" : " ./ dist" ,
4
4
"lib" : {
5
5
"entryFile" : " src/public-api.ts"
6
6
},
Original file line number Diff line number Diff line change 14
14
}
15
15
},
16
16
"scripts" : {
17
+ "prepare" : " pnpm run build" ,
17
18
"build" : " ng-packagr -p ng-package.json" ,
18
19
"publish:tags" : " sh -c 'TAG=\" ${npm_package_name}@${npm_package_version}\" ; git tag --list \" $TAG\" | grep . || git tag \" $TAG\" ; git push origin \" $TAG\" '" ,
19
20
"release" : " pnpm pack --pack-destination ../../releases/"
Original file line number Diff line number Diff line change 15
15
packages :
16
16
- packages/*
17
17
- packages/angular/projects/*
18
- # - examples/* Remove until all package depenencies are published to npm
18
+ - examples/angular
19
19
onlyBuiltDependencies :
20
20
- ' @parcel/watcher'
21
21
- esbuild
You can’t perform that action at this time.
0 commit comments