Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meta: update package version to v1.4.5 #166

Merged
merged 3 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
};
Loading