plugins.js 264 B

1234567891011121314
  1. "use strict";
  2. /**
  3. *
  4. * Callable function with the initial plugins
  5. *
  6. * @param {Void} _ - void value
  7. * @returns {Function} An function that returns an array
  8. * that consists of the uglify plugin
  9. */
  10. module.exports = _ => {
  11. return ["new UglifyJSPlugin()"];
  12. };