Skip to content
This repository was archived by the owner on Sep 21, 2019. It is now read-only.

Commit c03ea8a

Browse files
author
Mohsen Azimi
committed
Update dependencies
1 parent abbbb57 commit c03ea8a

File tree

4 files changed

+1694
-569
lines changed

4 files changed

+1694
-569
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ node_modules
22
dist
33
.DS_Store
44
coverage/
5-
.log
5+
*.log

package.json

+17-18
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"prettier": "prettier --write *.{js,json,css,md,ts,tsx}"
1919
},
2020
"jest": {
21-
"mapCoverage": true,
2221
"transform": {
2322
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
2423
},
@@ -32,30 +31,30 @@
3231
"author": "Mohsen Azimi <me@azimi.me>",
3332
"license": "Apache-2.0",
3433
"dependencies": {
35-
"chalk": "^1.1.3",
36-
"commander": "^2.10.0",
34+
"chalk": "^2.4.1",
35+
"commander": "^2.15.1",
3736
"detect-indent": "^5.0.0",
3837
"glob": "^7.1.2",
39-
"lodash": "^4.17.4",
40-
"prettier": "^1.10.2",
41-
"typescript": "2.7"
38+
"lodash": "^4.17.10",
39+
"prettier": "^1.12.1",
40+
"typescript": "2.8.3"
4241
},
4342
"devDependencies": {
44-
"@types/chalk": "^0.4.31",
43+
"@types/chalk": "^2.2.0",
4544
"@types/commander": "^2.9.1",
4645
"@types/detect-indent": "^5.0.0",
47-
"@types/glob": "^5.0.30",
48-
"@types/jest": "^20.0.2",
49-
"@types/lodash": "^4.14.93",
50-
"@types/node": "^8.0.2",
51-
"@types/prettier": "^1.10.0",
52-
"@types/react": "^15.0.31",
46+
"@types/glob": "^5.0.35",
47+
"@types/jest": "^22.2.3",
48+
"@types/lodash": "^4.14.109",
49+
"@types/node": "^10.1.2",
50+
"@types/prettier": "^1.12.2",
51+
"@types/react": "^16.3.14",
5352
"dedent": "^0.7.0",
5453
"husky": "^0.14.3",
55-
"jest": "^20.0.4",
56-
"lint-staged": "^6.0.1",
57-
"ts-jest": "^20.0.6",
58-
"ts-node": "^3.1.0",
59-
"tslint": "^5.2.0"
54+
"jest": "^22.4.4",
55+
"lint-staged": "^7.1.1",
56+
"ts-jest": "^22.4.6",
57+
"ts-node": "^6.0.3",
58+
"tslint": "^5.10.0"
6059
}
6160
}

src/compiler.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as os from 'os';
22
import * as fs from 'fs';
33
import * as ts from 'typescript';
4-
import * as chalk from 'chalk';
4+
import chalk from 'chalk';
55
import * as _ from 'lodash';
66
import * as prettier from 'prettier';
77
import * as detectIndent from 'detect-indent';

0 commit comments

Comments
 (0)