Lemonldap-NG-Manager

 view release on metacpan or  search on metacpan

site/js-src/rollup.config.cjs  view on Meta::CPAN

const fs = require('fs')
const path = require('path')
const babel = require('@rollup/plugin-babel')

const inputFiles = fs.readdirSync('.').filter(file => file.endsWith('.js'));

module.exports = inputFiles.map(file => ({
  input: file,
  output: {
    file: path.join('..','htdocs','static','js', file),
    format: 'iife',
    name: path.basename(file, '.js'),
    extend: true,
  },
  plugins: [babel({babelHelpers: 'bundled'})],
}));



( run in 3.155 seconds using v1.01-cache-2.11-cpan-5837b0d9d2c )