mirror of
https://github.com/penpot/penpot.git
synced 2026-03-01 15:53:53 +00:00
13 lines
143 B
Bash
Executable File
13 lines
143 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
TARGET=${1:-app};
|
|
|
|
set -ex
|
|
|
|
rm -rf node_modules;
|
|
|
|
corepack enable;
|
|
corepack install;
|
|
pnpm install;
|
|
pnpm run watch:$TARGET
|