mirror of
https://github.com/lmg-anon/mikupad.git
synced 2026-04-26 10:40:53 +00:00
19 lines
No EOL
321 B
Bash
19 lines
No EOL
321 B
Bash
#!/bin/bash
|
|
|
|
if ! command -v node > /dev/null 2>&1; then
|
|
echo "Node.js is not installed."
|
|
exit 1
|
|
fi
|
|
|
|
if ! command -v npm > /dev/null 2>&1; then
|
|
echo "npm is not installed."
|
|
exit 1
|
|
fi
|
|
|
|
cp -f mikupad.html project
|
|
|
|
cd project
|
|
npm install
|
|
npm run build
|
|
cp -f ./dist/mikupad.html ../mikupad_compiled.html
|
|
cd .. |