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.
9 lines
198 B
9 lines
198 B
10 years ago
|
var assert = require( 'assert' );
|
||
|
|
||
10 years ago
|
module.exports = {
|
||
|
description: 'exports named values from the bundle entry module',
|
||
10 years ago
|
exports: function ( exports ) {
|
||
10 years ago
|
assert.equal( exports.answer, 42 );
|
||
|
}
|
||
10 years ago
|
};
|