mirror of
https://github.com/penpot/penpot.git
synced 2026-04-26 03:38:18 +00:00
12 lines
238 B
Bash
12 lines
238 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# pnpm-lock.yaml is hard-excluded by npm, but we need it; ship it under a neutral name
|
|
cp pnpm-lock.yaml pnpm-lock.dist.yaml
|
|
trap 'rm -f pnpm-lock.dist.yaml' EXIT
|
|
|
|
npm pack
|