Skip to content
This repository was archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
bumped to ng2beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorstenHans committed Feb 17, 2016
1 parent 4528d27 commit 420083c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -260,3 +260,4 @@ dist
cordova/resources
electron-build
electron/www
typings
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"url": "git+https://github.com/thinktecture/boardz-cross-platform-sample.git"
},
"scripts": {
"gulp": "gulp"
"gulp": "gulp",
"typings": "typings",
"postinstall": "typings install"
},
"author": "Thinktecture AG",
"author": "Thinktecture AG <[email protected]>",
"bugs": {
"url": "https://github.com/thinktecture/boardz-cross-platform-sample/issues"
},
"homepage": "https://github.com/thinktecture/boardz-cross-platform-sample#readme",
"devDependencies": {
"angular2": "^2.0.0-beta.3",
"angular2": "^2.0.0-beta.6",
"bootstrap": "^3.3.6",
"del": "^2.0.2",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"event-stream": "^3.3.1",
"font-awesome": "^4.5.0",
"gulp": "^3.9.0",
Expand All @@ -44,13 +44,16 @@
"merge2": "^0.3.6",
"nw-builder": "^2.2.0",
"rdash-ui": "git+https://github.com/rdash/rdash-ui.git#1.0.1",
"reflect-metadata": "0.1.2",
"run-sequence": "^1.1.4",
"rxjs": "5.0.0-beta.0",
"shelljs": "^0.5.3",
"stream-series": "^0.1.1",
"systemjs": "0.19.6",
"systemjs": "0.19.20",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.14",
"typescript": "^1.8.0",
"zone.js": "0.5.11"
"typings": "^0.6.8"
}
}
2 changes: 2 additions & 0 deletions src/BoardZ/app/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
///<reference path="../../../node_modules/angular2/typings/browser.d.ts"/>

import {bootstrap} from 'angular2/platform/browser';
import {ComponentRef, provide, enableProdMode} from 'angular2/core';
import {ROUTER_PROVIDERS, LocationStrategy, HashLocationStrategy} from 'angular2/router';
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"compilerOptions": {
"target": "es5",

"module": "system",
"moduleResolution": "node",

"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules"
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
5 changes: 5 additions & 0 deletions typings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ambientDependencies": {
"es6-shim": "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#6697d6f7dadbf5773cb40ecda35a76027e0783b2"
}
}

0 comments on commit 420083c

Please sign in to comment.