mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 09:16:01 +08:00
- Loading screen is never shown if demo loads completely while offscreen. - HTML charset specified. - Tabs, not spaces, you filthy animals. Each unminified JS reduced by ~80kb. - Clean up.
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.widget.json
|
|
ls build/*.js build/*.ts | awk '{print "unexpand -t 4 ", $0, " > /tmp/e; mv /tmp/e ", $0}' | sh
|