Skip to content

Commit 2ab39f0

Browse files
committed
chore: chalk 2.2.0 update
1 parent 04238f4 commit 2ab39f0

86 files changed

Lines changed: 91 additions & 93 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lerna": "2.2.0",
2+
"lerna": "2.4.0",
33
"version": "independent",
44
"packages": [
55
"packages/**"

packages/@ionic/cli-utils/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"archiver": "^2.1.0",
4141
"basic-auth": "^1.1.0",
4242
"body-parser": "^1.18.1",
43-
"chalk": "^2.0.0",
43+
"chalk": "^2.2.0",
4444
"chokidar": "^1.7.0",
4545
"ci-info": "^1.1.1",
4646
"cross-spawn": "^5.1.0",
@@ -76,7 +76,6 @@
7676
"@types/archiver": "^2.0.1",
7777
"@types/basic-auth": "^1.1.2",
7878
"@types/body-parser": "^1.16.5",
79-
"@types/chalk": "^0.4.31",
8079
"@types/chokidar": "^1.7.3",
8180
"@types/clean-css": "^3.4.30",
8281
"@types/diff": "^3.2.2",
@@ -89,7 +88,7 @@
8988
"@types/opn": "^3.0.28",
9089
"@types/semver": "^5.4.0",
9190
"@types/tar": "^1.0.29",
92-
"@types/uuid": "^3.4.2",
91+
"@types/uuid": "^3.4.3",
9392
"@types/ws": "^3.2.0",
9493
"rxjs": "^5.4.2"
9594
},

packages/@ionic/cli-utils/src/commands/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as chalk from 'chalk';
1+
import chalk from 'chalk';
22

33
import { CommandLineInputs, CommandLineOptions, IonicEnvironment } from '../definitions';
44

packages/@ionic/cli-utils/src/commands/config/get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as util from 'util';
2-
import * as chalk from 'chalk';
2+
import chalk from 'chalk';
33

44
import { CommandLineInputs, CommandLineOptions, IonicEnvironment } from '../../definitions';
55
import { FatalException } from '../../lib/errors';

packages/@ionic/cli-utils/src/commands/config/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as chalk from 'chalk';
1+
import chalk from 'chalk';
22

33
import { CommandLineInputs, CommandLineOptions, IBaseConfig, IonicEnvironment } from '../../definitions';
44
import { FatalException } from '../../lib/errors';

packages/@ionic/cli-utils/src/commands/serve.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as chalk from 'chalk';
1+
import chalk from 'chalk';
22

33
import { CommandLineInputs, CommandLineOptions, IonicEnvironment, ServeDetails } from '../definitions';
44
import { FatalException } from '../lib/errors';

packages/@ionic/cli-utils/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as util from 'util';
22
import * as path from 'path';
33

44
import { isCI } from 'ci-info';
5-
import * as chalk from 'chalk';
5+
import chalk from 'chalk';
66
import * as minimist from 'minimist';
77

88
import * as inquirerType from 'inquirer';

packages/@ionic/cli-utils/src/lib/__tests__/validators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as chalk from 'chalk';
1+
import chalk from 'chalk';
22

33
import { validators } from '../validators';
44

packages/@ionic/cli-utils/src/lib/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as chalk from 'chalk';
1+
import chalk from 'chalk';
22

33
import {
44
CommandData,

packages/@ionic/cli-utils/src/lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as path from 'path';
22
import * as os from 'os';
33

4-
import * as chalk from 'chalk';
4+
import chalk from 'chalk';
55
import * as minimistType from 'minimist';
66

77
import {

0 commit comments

Comments
 (0)