Skip to content

Commit

Permalink
Replace 'meteor-typings' with '@types/meteor'
Browse files Browse the repository at this point in the history
  • Loading branch information
DAB0mB committed Dec 19, 2016
1 parent 49d3664 commit b0d35e1
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
1 change: 0 additions & 1 deletion .bithoundrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"conventional-changelog-cli",
"zone.js",
"reflect-metadata",
"meteor-typings",
"@types/*"
]
}
Expand Down
2 changes: 1 addition & 1 deletion dist/MeteorObservable.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="meteor-typings" />
/// <reference types="@types/meteor" />
import { Observable } from 'rxjs';
/**
* This is a class with static methods that wrap Meteor's API and return RxJS
Expand Down
2 changes: 1 addition & 1 deletion dist/ObservableCollection.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="chai" />
/// <reference types="meteor-typings" />
/// <reference types="@types/meteor" />
import { Observable } from 'rxjs';
import { ObservableCursor } from './ObservableCursor';
import Selector = Mongo.Selector;
Expand Down
2 changes: 1 addition & 1 deletion dist/ObservableCursor.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="meteor-typings" />
/// <reference types="@types/meteor" />
import { Observable } from 'rxjs';
export declare class ObservableCursor<T> extends Observable<T[]> {
private _zone;
Expand Down
4 changes: 2 additions & 2 deletions examples/angular2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"@angular/platform-browser": "2.1.2",
"@angular/platform-browser-dynamic": "2.1.2",
"@angular/router": "3.1.2",
"@types/meteor": "1.3.31",
"angular2-meteor": "0.7.0",
"angular2-meteor-polyfills": "0.1.1",
"angular2-meteor-tests-polyfills": "0.0.2",
"meteor-node-stubs": "0.2.3",
"meteor-rxjs": "../../",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.26",
"meteor-typings": "1.3.1"
"zone.js": "0.6.26"
}
}
2 changes: 1 addition & 1 deletion examples/angular2/typings.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="zone.js" />
/// <reference types="meteor-typings" />
/// <reference types="@types/meteor" />
/// <reference types="@types/underscore" />

declare module "*.html" {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
"rxjs": "^5.0.0-beta.12"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/meteor": "^1.3.31",
"@types/mocha": "2.2.33",
"@types/underscore": "1.7.36",
"@types/chai": "^3.4.34",
"conventional-changelog": "1.1.0",
"conventional-changelog-cli": "1.2.0",
"es6-shim": "0.35.2",
"ghooks": "1.3.2",
"jsdoc-to-markdown": "2.0.1",
"meteor-typings": "1.3.1",
"rollup": "0.37.0",
"rxjs": "^5.0.0-rc.4",
"tslint": "4.1.0",
Expand Down
6 changes: 3 additions & 3 deletions typings.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="zone.js" />
/// <reference types="meteor-typings" />
/// <reference types="@types/underscore" />
/// <reference types="@types/chai" />
/// <reference types="@types/chai" />
/// <reference types="@types/meteor" />
/// <reference types="@types/underscore" />

0 comments on commit b0d35e1

Please sign in to comment.