mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
* (Maybe) Fixes #3187 (couldn't repo, but found bug) - Fixes multiple Node.js plugins not being loaded * Added .eslintignore * Added tests to fix #3187 * Fixed browser test
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
functions.addMultiple({
|
|
'test-shadow' : function() {
|
|
return new tree.Anonymous( 'local' );
|
|
},
|
|
'test-local' : function() {
|
|
return new tree.Anonymous( 'local' );
|
|
}
|
|
});
|
|
|
|
registerPlugin({
|
|
setOptions: function(opts) {
|
|
// do nothing
|
|
}
|
|
});
|