mirror of
https://github.com/szdytom/nyanpasu.git
synced 2025-10-19 17:10:16 +00:00
7 lines
167 B
Bash
Executable File
7 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
cd $(git rev-parse --show-toplevel)
|
|
rm -rf dist
|
|
npx ncc build -m src/index.mjs
|
|
cat nyanpasu.js dist/index.mjs > dist/nyanpasu.mjs
|
|
chmod +x dist/nyanpasu.mjs
|