mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
10 lines
275 B
Bash
Executable File
10 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
set -e -x
|
|
tsc -p tsconfig.json
|
|
tsc -p tsconfig.core.json
|
|
tsc -p tsconfig.webgl.json
|
|
tsc -p tsconfig.canvas.json
|
|
tsc -p tsconfig.threejs.json
|
|
tsc -p tsconfig.player.json
|
|
ls build/*.js build/*.ts | awk '{print "unexpand -t 4 ", $0, " > /tmp/e; mv /tmp/e ", $0}' | sh
|