Skip to content

Commit

Permalink
chore(dependencies): cleanup and generated dist
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Dec 21, 2016
1 parent e7210b3 commit f4debe4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 14 deletions.
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" />
/// <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,4 +1,4 @@
/// <reference types="meteor" />
/// <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" />
/// <reference types="@types/meteor" />
import { Observable } from 'rxjs';
export declare class ObservableCursor<T> extends Observable<T[]> {
private _zone;
Expand Down
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build-only": "tsc || echo not ok",
"pretest": "npm run build && cd tests && rm -rf node_modules && npm install",
"test:ci": "npm run pretest && cd tests && meteor test --once --driver-package dispatch:mocha-phantomjs",
"test": "cd tests && meteor test --driver-package practicalmeteor:mocha",
"test": "cd tests && meteor test --driver-package dispatch:mocha-phantomjs",
"lint": "tslint src/**/*.ts",
"bundle": "rollup -i ./dist/index.js -o ./dist/bundles/index.umd.js -n meteor.rxjs -c rollup.config.js"
},
Expand All @@ -38,7 +38,7 @@
"homepage": "http://www.angular-meteor.com",
"peerDependencies": {
"babel-runtime": "^6.18.0",
"rxjs": "^5.0.0-beta.12"
"rxjs": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
Expand All @@ -47,14 +47,11 @@
"@types/underscore": "1.7.36",
"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",
"rollup": "0.37.1",
"rxjs": "^5.0.0-rc.4",
"tslint": "4.1.0",
"typescript": "2.1.4",
"validate-commit-msg": "2.8.2",
"zone.js": "^0.7.4"
},
"greenkeeper": {
Expand Down
9 changes: 7 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@
"sourceMap": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
"types": [
"zone.js",
"@types/chai",
"@types/meteor",
"@types/underscore"
]
},
"files": [
"typings.d.ts",
"src/index.ts"
],
"exclude": [
Expand Down
4 changes: 0 additions & 4 deletions typings.d.ts

This file was deleted.

0 comments on commit f4debe4

Please sign in to comment.