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.
17 lines
542 B
17 lines
542 B
var path = require( 'path' );
|
|
var assert = require( 'assert' );
|
|
|
|
var warned = false;
|
|
|
|
module.exports = {
|
|
description: 'warns about use of eval',
|
|
options: {
|
|
onwarn: function ( message ) {
|
|
warned = true;
|
|
assert.ok( /Use of `eval` \(in .+?main\.js\) is strongly discouraged, as it poses security risks and may cause issues with minification\. See https:\/\/github.com\/rollup\/rollup\/wiki\/Troubleshooting#avoiding-eval for more details/.test( message ) );
|
|
}
|
|
},
|
|
exports: function () {
|
|
assert.ok( warned, 'did not warn' );
|
|
}
|
|
};
|
|
|