mirror of
https://github.com/tornadocash/snarkjs.git
synced 2024-10-31 23:35:40 +01:00
41 lines
874 B
JavaScript
41 lines
874 B
JavaScript
import { nodeResolve } from "@rollup/plugin-node-resolve";
|
|
import commonJS from "@rollup/plugin-commonjs";
|
|
import json from '@rollup/plugin-json';
|
|
|
|
export default {
|
|
input: "cli.js",
|
|
output: {
|
|
file: "build/cli.cjs",
|
|
format: "cjs",
|
|
banner: "#! /usr/bin/env node\n",
|
|
},
|
|
external: [
|
|
"fs",
|
|
"os",
|
|
"worker_threads",
|
|
"readline",
|
|
"crypto",
|
|
"path",
|
|
"big-integer",
|
|
"wasmsnark",
|
|
"circom_runtime",
|
|
"blake2b-wasm",
|
|
|
|
"ffjavascript",
|
|
"keccak",
|
|
"yargs",
|
|
"logplease",
|
|
],
|
|
plugins: [
|
|
nodeResolve({
|
|
preferBuiltins: true,
|
|
}),
|
|
commonJS({
|
|
preserveSymlinks: true,
|
|
include: "node_modules/**",
|
|
exclude: "node_modules/big-integer/**"
|
|
}),
|
|
json()
|
|
]
|
|
};
|