13 lines
211 B
Bash
Executable file
13 lines
211 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Move into the root folder.
|
|
cd $(dirname $(dirname $0))
|
|
|
|
# Make sure everything is set up.
|
|
./scripts/setup.sh
|
|
|
|
# Build the project.
|
|
npm run build
|
|
|
|
# Versions
|
|
# 2022-08-11 - Initial version
|