2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/scripts/runner.sh

10 lines
347 B
Bash
Raw Normal View History

2022-05-20 11:12:32 +00:00
#! /usr/bin/env zsh
# basically uses electron's node to prevent
# mismatch in NODE_MODULE_VERSION when running
# better-sqlite3
export TS_NODE_COMPILER_OPTIONS='{"module":"commonjs"}'
export ELECTRON_RUN_AS_NODE=true
alias electron_node="./node_modules/.bin/electron --require ts-node/register --require tsconfig-paths/register"
electron_node $@