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.
14 lines
317 B
14 lines
317 B
var assert = require( 'assert' );
|
|
var path = require( 'path' );
|
|
|
|
module.exports = {
|
|
description: 'exports directly from an external module',
|
|
options: {
|
|
external: [ 'path' ]
|
|
},
|
|
exports: function ( exports ) {
|
|
assert.equal( exports.sep, path.sep );
|
|
}
|
|
};
|
|
|
|
// https://github.com/esperantojs/esperanto/issues/161
|
|
|