Replace semi colon with double ampersand, which is platform agnostic AND

This commit is contained in:
jaknapper 2025-06-30 17:57:16 +01:00
parent 3e0264bcbc
commit 687ef8a00e

View file

@ -6,10 +6,10 @@
"author": "OpenFlexure <contact@openflexure.org> (https://www.openflexure.org)", "author": "OpenFlexure <contact@openflexure.org> (https://www.openflexure.org)",
"scripts": { "scripts": {
"gv": "genversion src/version.js", "gv": "genversion src/version.js",
"serve": "npm run gv; vue-cli-service serve --mode development", "serve": "npm run gv && vue-cli-service serve --mode development",
"serve-without-imjoy": "npm run gv; VUE_APP_ENABLE_IMJOY=false vue-cli-service serve --mode development", "serve-without-imjoy": "npm run gv && VUE_APP_ENABLE_IMJOY=false vue-cli-service serve --mode development",
"build": "npm run gv; vue-cli-service build --openssl-legacy-provider --mode production", "build": "npm run gv && vue-cli-service build --openssl-legacy-provider --mode production",
"build-without-imjoy": "npm run gv; VUE_APP_ENABLE_IMJOY=false vue-cli-service build --mode production", "build-without-imjoy": "npm run gv && VUE_APP_ENABLE_IMJOY=false vue-cli-service build --mode production",
"lint": "vue-cli-service lint", "lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix" "lint:fix": "vue-cli-service lint --fix"
}, },