Skip to content

Commit cc3875a

Browse files
committed
fixup
1 parent c561c53 commit cc3875a

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

integration/size-test/check-size.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* amount, the script will fail with a non-zero exit code.
55
*/
66

7-
import chalk from 'chalk';
7+
import * as chalk from 'chalk';
88
import {readFileSync, statSync, writeFileSync} from 'fs';
99
import {parse, stringify} from 'yaml';
1010

scripts/breaking-changes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {join, relative} from 'path';
22
import {readFileSync} from 'fs';
3-
import chalk from 'chalk';
3+
import * as chalk from 'chalk';
44
import * as ts from 'typescript';
55
import * as tsutils from 'tsutils';
66

scripts/check-mdc-exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {join} from 'path';
22
import {readdirSync, existsSync} from 'fs';
33
import * as ts from 'typescript';
4-
import chalk from 'chalk';
4+
import * as chalk from 'chalk';
55
import {config} from './check-mdc-exports-config';
66

77
// Script which ensures that a particular MDC package exports all of the same symbols as its

scripts/check-mdc-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {readdirSync, readFileSync} from 'fs';
22
import {join, basename} from 'path';
33
import {sync as glob} from 'glob';
4-
import chalk from 'chalk';
4+
import * as chalk from 'chalk';
55
import * as ts from 'typescript';
66
import {config} from './check-mdc-tests-config';
77

scripts/check-rollup-globals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* be passed to this script to ensure that the rollup globals are up-to-date.
99
*/
1010

11-
import chalk from 'chalk';
11+
import * as chalk from 'chalk';
1212
import {readFileSync} from 'fs';
1313
import * as minimatch from 'minimatch';
1414
import {join, relative} from 'path';

scripts/ownerslint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {readdirSync, readFileSync, statSync} from 'fs';
33
import {IMinimatch, Minimatch} from 'minimatch';
44
import {join} from 'path';

tools/package-tools/compile-entry-point.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {join} from 'path';
33
import {BuildPackage} from './build-package';
44
import {tsCompile} from './ts-compile';

tools/package-tools/ts-compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {resolve as resolvePath} from 'path';
22
import {spawn} from 'child_process';
3-
import chalk from 'chalk';
3+
import * as chalk from 'chalk';
44

55
/**
66
* Spawns a child process that compiles TypeScript using the specified compiler binary.

tools/release/base-release-task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {prompt} from 'inquirer';
33
import {GitClient} from './git/git-client';
44
import {Version} from './version-name/parse-version';

tools/release/changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {createReadStream, createWriteStream, readFileSync} from 'fs';
33
import {prompt} from 'inquirer';
44
import {join} from 'path';

tools/release/publish-release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {readFileSync, unlinkSync} from 'fs';
33
import {homedir} from 'os';
44
import {join} from 'path';

tools/release/release-output/check-package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import * as chalk from 'chalk';
22
import {existsSync} from 'fs';
33
import {sync as glob} from 'glob';
44
import {join} from 'path';

tools/release/stage-release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as Octokit from '@octokit/rest';
2-
import chalk from 'chalk';
2+
import * as chalk from 'chalk';
33
import {existsSync, readFileSync, writeFileSync} from 'fs';
44
import {join} from 'path';
55
import {BaseReleaseTask} from './base-release-task';

0 commit comments

Comments
 (0)