7 lines
197 B
Bash
Executable file
7 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
npm run concurrently -- -k \
|
|
"cd client/src/standalone/videos/ && npx vite-bundle-visualizer" \
|
|
"cd client && npx esbuild-visualizer --metadata ./dist/en-US/stats.json"
|