mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-01-12 23:17:56 -05:00
14 lines
436 B
Bash
Executable File
14 lines
436 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Patches circom_tester v0.0.10+ to work
|
|
# Replaces all instances of invoking `circom` with `circom2`
|
|
echo "Updating circom_tester package to exec circom2 instead of circom1"
|
|
sed -i'' -e 's/circom /circom2 /g' ./node_modules/circom_tester/wasm/tester.js
|
|
|
|
# run typescript transpiler
|
|
if [ -d "./build" ]; then
|
|
echo "Typescript files appears to be already transpiled in ./build"
|
|
else
|
|
echo "Transpiling ts ==> js"
|
|
tsc
|
|
fi |