Skip to content

Commit

Permalink
fix for format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Nov 26, 2024
1 parent 39b5435 commit e03fd7f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"license": "LGPL-3.0",
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.3.3"
"prettier": "3.4.1"
}
}
2 changes: 1 addition & 1 deletion src/NFTMarkerCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Module.onRuntimeInitialized = async function () {

let contentBin = Module.FS.readFile("tempBinFile.bin");

fs.writeFileSync(path.join(__dirname, '/output/') + fileName + ".zft", contentBin);
fs.writeFileSync(path.join(__dirname, "/output/") + fileName + ".zft", contentBin);
//fs.writeFileSync(outputPath + fileName + ".zft", contentBin);

Module._free(StrBufferZip);
Expand Down

0 comments on commit e03fd7f

Please sign in to comment.