UNPKG

faucet-pipeline-js

Version:

JavaScript module bundling for faucet-pipeline

25 lines (22 loc) 395 B
"use strict"; let path = require("path"); module.exports = { js: [{ source: "./src/foo.js", target: "./dist/foo.js" }, { source: "./src/bar.js", target: "./dist/bar.js", esnext: true }], manifest: { target: "./dist/manifest.json", value: filepath => `/assets/${filepath}` }, plugins: { js: { plugin: path.resolve(__dirname, "../../.."), bucket: "scripts" } } };