6 lines
133 B
Bash
6 lines
133 B
Bash
|
#!/usr/bin/env bash
|
||
|
rm -rf dist
|
||
|
mkdir dist
|
||
|
./node_modules/.bin/webpack --config webpack.prod.config.js
|
||
|
cp dist/index.html index.html
|