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.
23 lines
442 B
23 lines
442 B
var fs = require( 'fs' );
|
|
|
|
module.exports = {
|
|
description: 'uses custom loaders, falling back to default',
|
|
options: {
|
|
plugins: [
|
|
{
|
|
load: function ( id ) {
|
|
if ( /foo\.js/.test( id ) ) {
|
|
return fs.readFileSync( id, 'utf-8' ).replace( '@', 1 );
|
|
}
|
|
}
|
|
},
|
|
{
|
|
load: function ( id ) {
|
|
if ( /bar\.js/.test( id ) ) {
|
|
return fs.readFileSync( id, 'utf-8' ).replace( '@', 2 );
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|