Skip to content

Commit 664a156

Browse files
committed
fix(build): downgrade to stable TS version to fix d.ts
Fixes angular#250
1 parent 981f0f5 commit 664a156

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"traceur": "0.0.96",
6565
"tsd": "^0.6.5",
6666
"typedoc": "github:jeffbcross/typedoc",
67-
"typescript": "^1.9.0-dev.20160608-1.0",
67+
"typescript": "^1.8.10",
6868
"typings": "^0.6.2",
6969
"zone.js": "^0.6.6"
7070
},

test/e2e/auth/firebase_auth_example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
FirebaseListObservable,
1010
FirebaseAuthState,
1111
FirebaseApp
12-
} from 'angularfire2';
12+
} from '../../../dist/angularfire2';
1313

1414
enableProdMode();
1515

test/e2e/firebase_list/firebase_list_example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
FIREBASE_PROVIDERS,
77
FirebaseListObservable,
88
FirebaseApp
9-
} from 'angularfire2';
9+
} from '../../../dist/angularfire2';
1010

1111
enableProdMode();
1212

test/e2e/firebase_object/firebase_object_example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
FIREBASE_PROVIDERS,
77
FirebaseObjectObservable,
88
FirebaseApp
9-
} from 'angularfire2';
9+
} from '../../../dist/angularfire2';
1010

1111
// TODO fix imports and tsconfig
1212
// import { COMMON_CONFIG } from '../../../src/test-config';

test/tsconfig.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@
88
"sourceMap": true,
99
"declaration": true,
1010
"removeComments": true,
11-
"baseUrl": ".",
1211
"rootDir": ".",
13-
"outDir": "../dist-test",
14-
"paths": {
15-
"angularfire2": [
16-
"../dist/*",
17-
"../dist/angularfire2.d.ts"
18-
]
19-
}
12+
"outDir": "../dist-test"
2013
}
2114
}

0 commit comments

Comments
 (0)