Skip to content

Commit

Permalink
chore: commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SoonIter committed Aug 19, 2024
1 parent f0ac951 commit 55a2f12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/plugin-dts/src/apiExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from '@microsoft/api-extractor';
import { logger } from '@rsbuild/core';
import color from 'picocolors';
import type { DtsEntry } from 'src';
import type { DtsEntry } from './index';
import { getTimeCost } from './utils';

export type BundleOptions = {
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dts/src/dts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fs from 'node:fs';
import { basename, dirname, join, relative } from 'node:path';
import { logger } from '@rsbuild/core';
import color from 'picocolors';
import type { DtsGenOptions } from 'src';
import type { DtsGenOptions } from './index';
import ts from 'typescript';
import { emitDts } from './tsc';
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dts/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path, { join } from 'node:path';
import { type RsbuildConfig, logger } from '@rsbuild/core';
import fg from 'fast-glob';
import color from 'picocolors';
import type { DtsEntry } from 'src';
import type { DtsEntry } from './index';
import ts from 'typescript';

const { convertPathToPattern } = fg;
Expand Down

0 comments on commit 55a2f12

Please sign in to comment.