Update dependencies (#462)

This commit is contained in:
Matt Cowley 2024-01-23 20:19:02 +00:00 committed by GitHub
parent a40ac26eaa
commit 91c553a10f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5269 additions and 5692 deletions

10898
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -58,44 +58,44 @@
"prismjs": "^1.29.0", "prismjs": "^1.29.0",
"qs": "^6.11.2", "qs": "^6.11.2",
"simple-js-sha2-256": "^1.0.7", "simple-js-sha2-256": "^1.0.7",
"vue": "^3.3.4", "vue": "^3.4.15",
"vue-i18n": "^9.2.2", "vue-i18n": "^9.9.0",
"vue-select": "^4.0.0-beta.6", "vue-select": "^4.0.0-beta.6",
"webpack-require-from": "^1.8.6" "webpack-require-from": "^1.8.6"
}, },
"devDependencies": { "devDependencies": {
"@babel/eslint-parser": "^7.22.9", "@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.9", "@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.22.9", "@babel/preset-env": "^7.23.8",
"@babel/runtime": "^7.22.6", "@babel/runtime": "^7.23.8",
"@vue/cli-service": "^5.0.8", "@vue/cli-service": "^5.0.8",
"ajv": "^8.12.0", "ajv": "^8.12.0",
"chalk": "^5.3.0", "chalk": "^5.3.0",
"copyfiles": "^2.4.1", "copyfiles": "^2.4.1",
"core-js": "^3.32.0", "core-js": "^3.35.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0", "duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^8.46.0", "eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1", "eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.16.1", "eslint-plugin-vue": "^9.20.1",
"esm": "^3.2.25", "esm": "^3.2.25",
"extensionless": "^1.7.3", "extensionless": "^1.9.6",
"husky": "^8.0.3", "husky": "^8.0.3",
"jest": "^29.6.2", "jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.3", "lint-staged": "^15.2.0",
"node-fetch": "^3.3.2", "node-fetch": "^3.3.2",
"postcss": "^8.4.31", "postcss": "^8.4.33",
"prettier": "3.0.3", "prettier": "3.2.4",
"sass": "^1.64.2", "sass": "^1.70.0",
"sass-loader": "^13.3.2", "sass-loader": "^14.0.0",
"stylelint": "^15.10.2", "stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^10.0.0", "stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.3", "stylelint-order": "^6.0.4",
"vue-template-compiler": "^2.7.14", "vue-template-compiler": "^2.7.16",
"webpack": "^5.88.2", "webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.0" "webpack-bundle-analyzer": "^4.10.1"
}, },
"overrides": { "overrides": {
"@vue/cli-service": { "@vue/cli-service": {

View file

@ -303,8 +303,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed domain.routing.fallbackHtml.computed
? 'html' ? 'html'
: domain.routing.fallbackPhp.computed : domain.routing.fallbackPhp.computed
? 'php' ? 'php'
: '' : ''
} fallback`, } fallback`,
'', '',
]); ]);
@ -315,8 +315,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed domain.routing.fallbackHtml.computed
? 'html' ? 'html'
: domain.routing.fallbackPhp.computed : domain.routing.fallbackPhp.computed
? 'php?$query_string' ? 'php?$query_string'
: '' : ''
}`, }`,
}, },
]); ]);

View file

@ -113,9 +113,8 @@ export default (domains, global) => {
domains.map((domain, index) => [domain, index]).filter((d) => d[0] !== null), domains.map((domain, index) => [domain, index]).filter((d) => d[0] !== null),
global, global,
); );
files[ files['nginxconfig.txt'] =
'nginxconfig.txt' `${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
] = `${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
return files; return files;
}; };