Skip to content

Commit

Permalink
Change typescript to be a dependency (#75)
Browse files Browse the repository at this point in the history
Typescript is being imported by the parser files, so it should be a direct dependency instead of just a development one.

Without that change, it's impossible to use the extractor programatically or with npx.
  • Loading branch information
tiagodws authored and biesbjerg committed Nov 7, 2017
1 parent 4892ea5 commit 8d1e2c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@
"mocha": "3.4.2",
"ts-node": "3.1.0",
"tslint": "5.4.3",
"tslint-eslint-rules": "4.1.1",
"typescript": "2.4.1"
"tslint-eslint-rules": "4.1.1"
},
"dependencies": {
"chalk": "2.0.1",
Expand All @@ -71,6 +70,7 @@
"glob": "7.1.2",
"path": "0.12.7",
"mkdirp": "0.5.1",
"flat": "2.0.1"
"flat": "2.0.1",
"typescript": "2.4.1"
}
}

0 comments on commit 8d1e2c5

Please sign in to comment.