Skip to content

Commit

Permalink
feat(ts21): Upgrade to TypeScript 2.1 (#203)
Browse files Browse the repository at this point in the history
* feat(README.md): Various improvements
* Improve wording/English
* Fix broken links
* Add a "Mandatory" field to the command line options
* feat(ts21): Upgrade to TypeScript 2.1
* Also fix some code issues caused by the upgrade
  • Loading branch information
philippw authored and nicojs committed Dec 29, 2016
1 parent 8f722ea commit 4ce1d16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"sinon-chai": "^2.8.0",
"stryker-api": "^0.4.1",
"tslint": "^3.15.1",
"typescript": "~2.0.2"
"typescript": "^2.1.4"
},
"peerDependencies": {
"stryker-api": "^0.4.0"
Expand Down
Binary file modified stryker-80x80.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions test/unit/mutators/BinaryOperatorMutatorSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ describe('BinaryOperatorMutator', () => {
operator: '+',
left: <estree.Literal>{
type: 'Literal',
value: 6,
value: typeof 6,
raw: '6'
},
right: <estree.Literal>{
type: 'Literal',
value: 7,
value: typeof 7,
raw: '7'
}
};
Expand Down

0 comments on commit 4ce1d16

Please sign in to comment.