10 lines
188 B
Bash
10 lines
188 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
cp -r ./ ~/temp-lucent
|
||
|
|
cd ~/temp-lucent && npm run build
|
||
|
|
rm -rf ~/temp-lucent/node_modules
|
||
|
|
rm -rf ~/temp-lucent/.git
|
||
|
|
cd ~/
|
||
|
|
zip -r lucent.zip temp-lucent/
|
||
|
|
rm -rf ~/temp-lucent
|