Skip to content

Commit

Permalink
feat(es2015-promise): Remove dep to es6-promise (#8)
Browse files Browse the repository at this point in the history
* feat(es2015-promise): Remove dep to es6-promise

* fix(deps): Pin version of typescript
  • Loading branch information
nicojs committed Apr 26, 2017
1 parent c80575e commit add7ff8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions packages/stryker-html-reporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"devDependencies": {
"@types/chai": "^3.4.32",
"@types/chai-as-promised": "0.0.29",
"@types/es6-promise": "0.0.31",
"@types/handlebars": "^4.0.30",
"@types/lodash": "^4.14.34",
"@types/log4js": "0.0.31",
Expand Down Expand Up @@ -74,9 +73,9 @@
"protractor": "^4.0.11",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"stryker-api": "^0.4.0",
"stryker-api": "^0.4.1",
"tslint": "^3.15.1",
"typescript": "^2.0.10"
"typescript": "~2.0.10"
},
"contributors": [
"Nico Jansen <jansennico@gmail.com>",
Expand Down
6 changes: 5 additions & 1 deletion packages/stryker-html-reporter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
"declaration": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"types": [ "mocha", "protractor" ]
"types": [ "mocha", "protractor" ],
"lib": [
"es5",
"es2015.promise"
]
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit add7ff8

Please sign in to comment.