- Updated package.json to include the UCS.csv file under the 'data' directory instead of the root.

- Modified MainApp.ts to resolve the path for UCS.csv from the 'data' directory.
- Deleted the unused test.wav file to clean up the repository.
This commit is contained in:
2025-11-11 11:01:43 +11:00
parent d0f7b0fe18
commit e9c679dfaf
5 changed files with 12 additions and 22 deletions

View File

@@ -48,7 +48,7 @@
"productName": "AudioSort",
"files": [
"dist/**/*",
"UCS.csv"
"data/**/*"
],
"directories": {
"output": "release"
@@ -63,8 +63,8 @@
},
"extraResources": [
{
"from": "UCS.csv",
"to": "UCS.csv"
"from": "data/UCS.csv",
"to": "data/UCS.csv"
}
]
}