1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-09 16:21:51 +00:00

Clean up Electron wrapper code

Remove a temporary console.log statement as well as now-unused msgpack
module.
This commit is contained in:
Даниїл Григор'єв 2025-06-10 16:43:56 +03:00
parent efb9eee286
commit 45e99d47b8
No known key found for this signature in database
GPG Key ID: B890DF16341D8C1D
3 changed files with 0 additions and 12 deletions

View File

@ -9,7 +9,6 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^3.1.1",
"semver": "^7.7.1",
"zod": "^3.24.2"
},
@ -51,15 +50,6 @@
"semver": "bin/semver.js"
}
},
"node_modules/@msgpack/msgpack": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-3.1.1.tgz",
"integrity": "sha512-DnBpqkMOUGayNVKyTLlkM6ILmU/m/+VUxGkuQlPQVAcvreLz5jn1OlQnWd8uHKL/ZSiljpM12rjRhr51VtvJUQ==",
"license": "ISC",
"engines": {
"node": ">= 18"
}
},
"node_modules/@sindresorhus/is": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",

View File

@ -9,7 +9,6 @@
"start": "tsc && electron ."
},
"dependencies": {
"@msgpack/msgpack": "^3.1.1",
"semver": "^7.7.1",
"zod": "^3.24.2"
},

View File

@ -120,7 +120,6 @@ export class FsJobHandler {
const parentDir = path.dirname(file);
await fs.mkdir(parentDir, { recursive: true });
console.log(contents);
await fs.writeFile(file, contents);
}