forked from mirror/ObjToSchematic
10 lines
178 B
Bash
10 lines
178 B
Bash
|
#!/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
|