From 826ffbf780c51a64029a1d70561dc78352156515 Mon Sep 17 00:00:00 2001 From: Danyil Hryhoriev Date: Sun, 14 Apr 2024 20:20:52 +0300 Subject: [PATCH] Fix missing Gulp CWD in packaging scripts The gulpfile is in a subdirectory and the scripts need to take that into account. While there's already one such script, I forgot to add the arguments in the new ones. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fc2bbafb2..5daf416c8 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ "lint": "eslint src/js", "prettier-all": "prettier --write src/**/*.* && prettier --write gulp/**/*.*", "buildTypes": "tsc src/js/application.js --declaration --allowJs --emitDeclarationOnly --skipLibCheck --out types.js", - "package-win32": "gulp package.standalone-steam.win32", - "package-linux": "gulp package.standalone-steam.linux" + "package-win32": "gulp --cwd gulp package.standalone-steam.win32", + "package-linux": "gulp --cwd gulp package.standalone-steam.linux" }, "dependencies": { "ajv": "^6.10.2",