Skip to content

Commit 961a998

Browse files
authored
Improve objects repository organization (#399)
* Remove unused old scripts and configurations * Move scripts into tools/scripts * Add comment to explain build.mjs purpose
2 parents 5b1dd67 + cf3c203 commit 961a998

File tree

12 files changed

+8
-185
lines changed

12 files changed

+8
-185
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
tar -C "$GITHUB_WORKSPACE/bin" -xf tools.tar.gz
5353
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
5454
- name: Create objects.zip
55-
run: ./build.mjs
55+
run: ./tools/scripts/build.mjs
5656
- name: Upload artifacts
5757
uses: actions/upload-artifact@v4
5858
with:

appveyor.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

export.bat

Lines changed: 0 additions & 10 deletions
This file was deleted.

export.sh

Lines changed: 0 additions & 42 deletions
This file was deleted.

language_verify.sh

Lines changed: 0 additions & 17 deletions
This file was deleted.

package

Lines changed: 0 additions & 35 deletions
This file was deleted.

package.ps1

Lines changed: 0 additions & 66 deletions
This file was deleted.

build.mjs renamed to tools/scripts/build.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/usr/bin/env node
2+
3+
/**
4+
* This script automates the build process for object assets.
5+
* It copies source objects, reprocesses image arrays, compiles LGX images,
6+
* and packages the results into .parkobj and .zip files.
7+
*/
8+
29
import fs from 'fs';
310
import path from 'path';
411
import { spawn } from 'child_process';

0 commit comments

Comments
 (0)