Skip to content

Commit

Permalink
chore(dependencies): add yarn support, remove typings, update depende…
Browse files Browse the repository at this point in the history
…ncies
  • Loading branch information
dotansimha committed Dec 22, 2016
1 parent 3309823 commit b6b0ea7
Show file tree
Hide file tree
Showing 6 changed files with 1,505 additions and 16 deletions.
4 changes: 0 additions & 4 deletions modules/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/// <reference types="zone.js" />
/// <reference types="meteor-typings" />
/// <reference types="@types/underscore" />

export * from './zone_utils';
export * from './mongo_cursor_observer';
export * from './mongo_cursor_differ';
Expand Down
4 changes: 4 additions & 0 deletions modules/mongo_cursor_observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ export class UpdateChange {
}

export class MoveChange {
public item: any;

constructor(public fromIndex: number, public toIndex: number) {}
}

export class RemoveChange {
public item: any;

constructor(public index: number) {}
}

Expand Down
17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"author": "Angular2-Meteor (https://github.com/Urigo/angular-meteor)",
"license": "MIT",
"scripts": {
"typings": "typings i",
"prebuild": "npm run lint",
"build-only": "tsc || echo not ok",
"build": "npm run build-only && npm run bundle",
Expand All @@ -42,24 +41,22 @@
"angular2-meteor-polyfills": "^0.1.1"
},
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/core": "^2.4.0",
"@types/underscore": "^1.7.33",
"angular2-meteor-polyfills": "^0.1.1",
"conventional-changelog-cli": "^1.2.0",
"es6-shim": "^0.35.0",
"meteor-typings": "^1.3.0",
"reflect-metadata": "^0.1.2",
"reflect-metadata": "0.1.9",
"rollup": "^0.38.0",
"rollup-plugin-babel": "^2.6.1",
"rxjs": "5.0.0-rc.4",
"rxjs": "5.0.1",
"tslint": "^4.0.0",
"typescript": "2.0.10",
"typings": "^1.3.0",
"typescript": "2.1.4",
"zone.js": "^0.7.4"
},
"dependencies": {
"@types/meteor": "^1.3.31",
"underscore": "^1.8.3"
},
"greenkeeper": {
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
"outDir": "./dist",
"rootDir": "./modules",
"lib": ["es2015", "dom"],
"skipLibCheck": true
"skipLibCheck": true,
"types": [
"zone.js",
"@types/meteor",
"@types/underscore"
]
},
"files": [
"modules/index.ts",
Expand Down
1 change: 0 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": false,
"object-literal-sort-keys": true,
Expand Down
Loading

0 comments on commit b6b0ea7

Please sign in to comment.