Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammar #309

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/plugin.ts
Expand Up @@ -472,7 +472,7 @@ export function dtsPlugin(options: PluginOptions = {}): import('vite').Plugin {

bundled = true
bundleDebug('begin writeBundle')
logger.info(green(`\n${logPrefix} Start generate declaration files...`))
logger.info(green(`\n${logPrefix} Start generating declaration files...`))

const startTime = Date.now()

Expand Down Expand Up @@ -636,7 +636,7 @@ export function dtsPlugin(options: PluginOptions = {}): import('vite').Plugin {
bundleDebug('insert index')

if (rollupTypes) {
logger.info(green(`${logPrefix} Start rollup declaration files...`))
logger.info(green(`${logPrefix} Start generating rollup declaration files...`))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think here it's better to use 'rolling up'.


let libFolder: string | undefined = resolve(root, 'node_modules/typescript')

Expand Down