mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
18 lines
581 B
Bash
Executable File
18 lines
581 B
Bash
Executable File
#! /usr/bin/env zsh
|
|
|
|
# https://nodejs.org/en/docs/guides/simple-profiling/
|
|
|
|
export TS_NODE_COMPILER_OPTIONS='{"module":"commonjs"}'
|
|
|
|
rm ./isolate-*-v8.log 2> /dev/null
|
|
rm ./profiler-output.log 2> /dev/null
|
|
|
|
export ELECTRON_RUN_AS_NODE=true
|
|
alias electron_node=./node_modules/.bin/electron
|
|
|
|
echo "running profile.ts"
|
|
electron_node --require ts-node/register --require tsconfig-paths/register --prof ./scripts/profile.ts
|
|
|
|
echo "processing tick file"
|
|
electron_node --prof-process ./isolate-*-v8.log > ./profiler-output.log && echo "generated profiler-output.log"
|
|
rm ./isolate-*-v8.log |