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.
29 lines
547 B
29 lines
547 B
9 years ago
|
var assert = require( 'assert' );
|
||
|
var path = require( 'path' );
|
||
|
|
||
|
module.exports = {
|
||
|
description: 'includes an external module included dynamically by an alias',
|
||
|
options: {
|
||
|
entry: path.join( __dirname, 'first', 'main.js' ),
|
||
|
external: [ 'lodash' ],
|
||
|
|
||
|
// Define a simple alias plugin for underscore
|
||
|
plugins: [
|
||
|
{
|
||
|
resolveId: function ( id ) {
|
||
|
if ( id === 'underscore' ) {
|
||
|
return 'lodash';
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
|
||
|
context: {
|
||
|
require: function ( required ) {
|
||
|
assert.equal( required, 'lodash' );
|
||
|
return 1;
|
||
|
}
|
||
|
}
|
||
|
};
|