faucet-pipeline-js
Version:
JavaScript module bundling for faucet-pipeline
21 lines (18 loc) • 318 B
JavaScript
;
let path = require("path");
module.exports = {
js: [{
source: "./src/index.js",
target: "./dist/bundle.js"
}, {
source: "./src/index.js",
target: "./dist/bundle_esnext.js",
esnext: true
}],
plugins: {
js: {
plugin: path.resolve(__dirname, "../../.."),
bucket: "scripts"
}
}
};