File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
node_modules /
2
2
dist /
3
+ docs /api /
3
4
typings /
4
5
npm-debug.log
5
6
.idea /
Original file line number Diff line number Diff line change
1
+ {
2
+ "firebase" : " angular-fire-2" ,
3
+ "public" : " ." ,
4
+ "redirects" : [
5
+ {
6
+ "source" : " /" ,
7
+ "destination" : " /api" ,
8
+ "type" : 302
9
+ }
10
+ ],
11
+ "ignore" : [
12
+ " firebase.json" ,
13
+ " **/.*" ,
14
+ " **/node_modules/**"
15
+ ]
16
+ }
Original file line number Diff line number Diff line change 5
5
"main" : " ./dist/angularfire2.js" ,
6
6
"scripts" : {
7
7
"test" : " npm run build; karma start" ,
8
+ "docs" : " typedoc --out docs/api/ --module commonjs --mode modules --name AngularFire2 src" ,
8
9
"build" : " rm -rf dist; tsc && cp package.json README.md LICENSE .npmignore dist/" ,
9
10
"postbuild" : " node tools/rewrite-published-package.js" ,
10
11
"postinstall" : " typings install; webdriver-manager update" ,
54
55
"systemjs-builder" : " ^0.15.7" ,
55
56
"traceur" : " 0.0.96" ,
56
57
"tsd" : " ^0.6.5" ,
58
+ "typedoc" : " github:jeffbcross/typedoc" ,
57
59
"typescript" : " 1.7.5" ,
58
60
"typings" : " ^0.6.2" ,
59
61
"zone.js" : " 0.5.15"
Original file line number Diff line number Diff line change @@ -63,7 +63,10 @@ export const WORKER_RENDER_FIREBASE_PROVIDERS: any[] = [
63
63
} ) ,
64
64
MessageBasedFirebaseAuth
65
65
] ;
66
-
66
+ /**
67
+ * Used to define the default Firebase root location to be
68
+ * used throughout an application.
69
+ */
67
70
export const defaultFirebase = ( url : string ) : Provider => {
68
71
return provide ( FirebaseUrl , {
69
72
useValue : url
You can’t perform that action at this time.
0 commit comments