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.
10 lines
488 B
10 lines
488 B
var assert = require( 'assert' );
|
|
|
|
module.exports = {
|
|
skip: true,
|
|
description: 'does not treat references inside IIFEs as weak dependencies', // edge case encountered in THREE.js codebase
|
|
warnings: warnings => {
|
|
assert.equal( warnings.length, 1 );
|
|
assert.ok( /Module .+D\.js may be unable to evaluate without .+C\.js, but is included first due to a cyclical dependency. Consider swapping the import statements in .+main\.js to ensure correct ordering/.test( warnings[0] ) );
|
|
}
|
|
};
|
|
|