Skip to content

Commit 2e4711a

Browse files
committed
bump chalk to 2.2
1 parent 43b1edc commit 2e4711a

File tree

5 files changed

+25
-32
lines changed

5 files changed

+25
-32
lines changed

package-lock.json

+21-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"author": "Google Inc.",
3939
"license": "Apache-2.0",
4040
"dependencies": {
41-
"chalk": "^2.0.1",
41+
"chalk": "^2.2.0",
4242
"clang-format": "^1.0.53",
4343
"inquirer": "^3.2.1",
4444
"meow": "^3.7.0",
@@ -49,7 +49,6 @@
4949
"write-file-atomic": "^2.1.0"
5050
},
5151
"devDependencies": {
52-
"@types/chalk": "^0.4.31",
5352
"@types/glob": "^5.0.30",
5453
"@types/inquirer": "0.0.35",
5554
"@types/make-dir": "^1.0.1",

src/clean.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import * as chalk from 'chalk';
16+
import chalk from 'chalk';
1717

1818
import {Options} from './cli';
1919
import {getTSConfig, rimrafp} from './util';

src/init.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import * as chalk from 'chalk';
16+
import chalk from 'chalk';
1717
import * as cp from 'child_process';
1818
import * as inquirer from 'inquirer';
1919
import * as path from 'path';

test/test-kitchen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as chalk from 'chalk';
2+
import chalk from 'chalk';
33
import * as cp from 'child_process';
44
import * as fs from 'fs';
55
import * as ncp from 'ncp';

0 commit comments

Comments
 (0)