mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-12-11 20:15:30 +01:00
10 lines
178 B
Bash
Executable File
10 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Building Core..."
|
|
npm run build --prefix Core
|
|
|
|
echo "Building Editor..."
|
|
npm run build --prefix Editor
|
|
|
|
echo "Building Sandbox..."
|
|
npm run build --prefix Sandbox |