Skip to content

Commit

Permalink
fix(build): downgrade to stable TS version to fix d.ts
Browse files Browse the repository at this point in the history
Fixes #250
  • Loading branch information
jeffbcross committed Jun 21, 2016
1 parent 981f0f5 commit 664a156
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"traceur": "0.0.96",
"tsd": "^0.6.5",
"typedoc": "github:jeffbcross/typedoc",
"typescript": "^1.9.0-dev.20160608-1.0",
"typescript": "^1.8.10",
"typings": "^0.6.2",
"zone.js": "^0.6.6"
},
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/auth/firebase_auth_example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
FirebaseListObservable,
FirebaseAuthState,
FirebaseApp
} from 'angularfire2';
} from '../../../dist/angularfire2';

enableProdMode();

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/firebase_list/firebase_list_example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
FIREBASE_PROVIDERS,
FirebaseListObservable,
FirebaseApp
} from 'angularfire2';
} from '../../../dist/angularfire2';

enableProdMode();

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/firebase_object/firebase_object_example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
FIREBASE_PROVIDERS,
FirebaseObjectObservable,
FirebaseApp
} from 'angularfire2';
} from '../../../dist/angularfire2';

// TODO fix imports and tsconfig
// import { COMMON_CONFIG } from '../../../src/test-config';
Expand Down
9 changes: 1 addition & 8 deletions test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@
"sourceMap": true,
"declaration": true,
"removeComments": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "../dist-test",
"paths": {
"angularfire2": [
"../dist/*",
"../dist/angularfire2.d.ts"
]
}
"outDir": "../dist-test"
}
}

0 comments on commit 664a156

Please sign in to comment.