Skip to content

Commit 8bf209e

Browse files
committed
chore: update
1 parent 90fedff commit 8bf209e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/plugin-dts/src/apiExtractor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function bundleDts(options: BundleOptions): Promise<void> {
7676
await addBannerAndFooter(untrimmedFilePath, banner, footer);
7777

7878
logger.info(
79-
`API Extractor bundle declaration files succeeded: ${color.cyan(untrimmedFilePath)} in ${getTimeCost(start)} ${color.gray(`(${name})`)}`,
79+
`bundle declaration files succeeded: ${color.cyan(untrimmedFilePath)} in ${getTimeCost(start)} ${color.gray(`(${name})`)}`,
8080
);
8181
}),
8282
);

packages/plugin-dts/src/dts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export async function generateDts(data: DtsGenOptions): Promise<void> {
126126
extension: false,
127127
},
128128
} = data;
129-
logger.start(`Generating declaration files... ${color.gray(`(${name})`)}`);
129+
logger.start(`generating declaration files... ${color.gray(`(${name})`)}`);
130130

131131
const { options: rawCompilerOptions, fileNames } = tsConfigResult;
132132

packages/plugin-dts/src/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ export async function emitDts(
285285
}
286286

287287
logger.ready(
288-
`Declaration files generated in ${getTimeCost(start)} ${color.gray(`(${name})`)}`,
288+
`declaration files generated in ${getTimeCost(start)} ${color.gray(`(${name})`)}`,
289289
);
290290
} else {
291291
// watch mode, can also deal with incremental build

0 commit comments

Comments
 (0)