12 lines
144 B
Bash
Executable file
12 lines
144 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e # exit when error
|
|
|
|
rm -rf dist
|
|
|
|
# JavaScript
|
|
npm run build:js
|
|
npm run build:css
|
|
|
|
# Documentation
|
|
npm run build:docs
|