Change from pnpm to npm, add ./link.sh shortcut for npm style package linking
[jst.git] / rollup.config.bin.js
1 import buble from "rollup-plugin-buble"
2
3 export default {
4   entry: "acorn/src/bin/acorn.js",
5   dest: "acorn/dist/bin.js",
6   format: "cjs",
7   external: ["fs", "path", "acorn"],
8   paths: {acorn: "./acorn.js"},
9   plugins: [buble()]
10 }