mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
import { basename } from 'path';
|
|
import { writeFile } from 'sander';
|
|
import Bundle from './Bundle';
|
|
|
|
let SOURCEMAPPING_URL = 'sourceMa';
|
|
SOURCEMAPPING_URL += 'ppingURL';
|
|
|
|
export function rollup ( options ) {
|
|
if ( !options || !options.entry ) {
|
|
throw new Error( 'You must supply options.entry to rollup' );
|
|
}
|
|
|
|
const bundle = new Bundle( options );
|
|
|
|
return bundle.build().then( () => {
|
|
return {
|
|
generate: options => bundle.generate( options ),
|
|
write: options => {
|
|
if ( !options || !options.dest ) {
|
|
throw new Error( 'You must supply options.dest to bundle.write' );
|
|
}
|
|
|
|
const dest = options.dest;
|
|
let { code, map } = bundle.generate( options );
|
|
|
|
let promises = [ writeFile( dest, code ) ];
|
|
|
|
if ( options.sourceMap ) {
|
|
let url;
|
|
|
|
if ( options.sourceMap === 'inline' ) {
|
|
url = map.toUrl();
|
|
} else {
|
|
url = `${basename( dest )}.map`;
|
|
promises.push( writeFile( dest + '.map', map.toString() ) );
|
|
}
|
|
|
|
code += `\n//# ${SOURCEMAPPING_URL}=${url}`;
|
|
}
|
|
|
|
return Promise.all( promises );
|
|
}
|
|
};
|
|
});
|
|
}
|
|
|