mirror of
https://github.com/penpot/penpot.git
synced 2026-04-03 10:00:34 +02:00
15 lines
177 B
Bash
Executable File
15 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
corepack enable;
|
|
corepack install;
|
|
pnpm install;
|
|
|
|
# Build render wasm binary
|
|
pushd ../render-wasm;
|
|
./build
|
|
popd
|
|
|
|
pnpm run lint:scss;
|
|
pnpm run test;
|