Skip to content

Commit

Permalink
fix: patch gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Lampese committed Feb 24, 2024
1 parent d30ab1b commit 06e3533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit 06e3533

Please sign in to comment.