UNPKG

faucet-pipeline-js

Version:

JavaScript module bundling for faucet-pipeline

18 lines (15 loc) 310 B
"use strict"; let path = require("path"); module.exports = { js: [{ source: "./src/index.js", target: "./dist/bundle.js", format: "umd", exports: "MYLIB" }, { source: "./src/index.js", target: "./dist/bundle_cjs.js", format: "commonjs" }], plugins: [path.resolve(__dirname, "../../..")] };