9 lines
200 B
Bash
9 lines
200 B
Bash
#!/bin/bash
|
|
rm -rf dist/
|
|
|
|
./node_modules/.bin/parcel build --out-dir dist/app src/index.html
|
|
chmod 705 dist dist/app
|
|
chmod 604 dist/app/*
|
|
|
|
sed -e "s/\/src/\/app\/src/g" --in-place dist/app/index.html
|