Skip to content

Commit

Permalink
fix(deps): update dependency chalk to v3 (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Nov 9, 2019
1 parent 59e6aa8 commit 1ce0f45
Show file tree
Hide file tree
Showing 5 changed files with 153 additions and 11 deletions.
156 changes: 149 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -45,7 +45,7 @@
"author": "Google Inc.",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^2.4.1",
"chalk": "^3.0.0",
"diff": "^4.0.1",
"inquirer": "^7.0.0",
"meow": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/clean.ts
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import chalk from 'chalk';
import chalk = require('chalk');
import * as ts from 'typescript';

import { Options } from './cli';
Expand Down
2 changes: 1 addition & 1 deletion src/init.ts
Expand Up @@ -31,7 +31,7 @@ import {

import { Options } from './cli';
import { PackageJson } from '@npm/types';
import chalk from 'chalk';
import chalk = require('chalk');

const pkg = require('../../package.json');

Expand Down
2 changes: 1 addition & 1 deletion test/test-kitchen.ts
@@ -1,4 +1,4 @@
import chalk from 'chalk';
import chalk = require('chalk');
import * as cp from 'child_process';
import * as fs from 'fs-extra';
import * as tmp from 'tmp';
Expand Down

0 comments on commit 1ce0f45

Please sign in to comment.