File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import ms from 'pretty-ms' ;
2- import * as rollup from '../../src/node-entry' ;
3- import { MergedRollupOptions } from '../../src/rollup/types' ;
2+ import { rollup } from '../../src/node-entry' ;
3+ import type { MergedRollupOptions } from '../../src/rollup/types' ;
44import { bold , cyan , green } from '../../src/utils/colors' ;
55import relativeId from '../../src/utils/relativeId' ;
6+ import { SOURCEMAPPING_URL } from '../../src/utils/sourceMappingURL' ;
67import { handleError , stderr } from '../logging' ;
7- import SOURCEMAPPING_URL from '../sourceMappingUrl' ;
8- import { BatchWarnings } from './batchWarnings' ;
8+ import type { BatchWarnings } from './batchWarnings' ;
99import { printTimings } from './timings' ;
1010
1111export default async function build (
@@ -29,7 +29,7 @@ export default async function build(
2929 stderr ( cyan ( `\n${ bold ( inputFiles ! ) } → ${ bold ( files . join ( ', ' ) ) } ...` ) ) ;
3030 }
3131
32- const bundle = await rollup . rollup ( inputOptions as any ) ;
32+ const bundle = await rollup ( inputOptions as any ) ;
3333 if ( useStdout ) {
3434 const output = outputOptions [ 0 ] ;
3535 if ( output . sourcemap && output . sourcemap !== 'inline' ) {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments