Skip to content

Commit

Permalink
meta: update package version to v1.4.5 (#166)
Browse files Browse the repository at this point in the history
* meta: update package version to v1.4.5

* fix: patch gulpfile

* fix: retry
  • Loading branch information
Lampese authored Feb 24, 2024
1 parent 1117404 commit 395bc91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pureeval/serein",
"version": "1.4.4-patch.3",
"version": "1.4.5",
"type": "module",
"description": "A Minecraft Bedrock creation manage tool.",
"main": "index.js",
Expand Down
8 changes: 4 additions & 4 deletions raw/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import gulpEsbuild from 'gulp-esbuild';
import stripJsonComments from 'strip-json-comments';

function getJSON(fileName) {
return stripJsonComments(readFileSync(fileName, 'utf-8'));
return JSON.parse(stripJsonComments(readFileSync(fileName, 'utf-8')));
}

function get_mojang_dir() {
Expand Down Expand Up @@ -197,9 +197,9 @@ const default_action = gulp.series(build, deploy);
export {
build,
bundle,
clean_and_copy as cc,
deploy,
default_action as default,
watch,
compile_scripts as cs
clean_and_copy as cc,
compile_scripts as cs,
default_action as default,
};

0 comments on commit 395bc91

Please sign in to comment.