1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-11 09:11:50 +00:00

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.
This commit is contained in:
Danyil Hryhoriev 2024-04-14 20:20:52 +03:00 committed by Даниїл Григор'єв
parent c2855d528d
commit 62b170a92d

View File

@ -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",