chore(deps): revert bumps to dependencies (#5676)

This commit is contained in:
Iain Sproat
2025-10-06 15:04:46 +01:00
committed by GitHub
parent 1e5433a3b3
commit b828daf5d2
10 changed files with 2958 additions and 376 deletions
+4
View File
@@ -74,6 +74,8 @@
"@aws-sdk/client-sts/fast-xml-parser": ">=4.2.5",
"@aws-sdk/client-s3/fast-xml-parser": ">=4.2.5",
"@bull-board/express/express": "^4.20.0",
"@datadog/datadog-ci/ssh2": "^1.16.0",
"@datadog/datadog-ci/form-data": "^4.0.4",
"@microsoft/api-extractor/semver": "^7.5.4",
"@rushstack/node-core-library/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "^8.20.0",
@@ -84,6 +86,8 @@
"bull-board/ejs": "^3.1.10",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.1.0",
"levelup/bl": ">=1.2.3",
"levelup/semver": ">=5.7.2",
"mocha/serialize-javascript": ">=6.0.2",
"prettier": "^2.8.7",
"puppeteer-core/ws": "^8.17.1",
@@ -4,7 +4,7 @@ import DOMPurify from 'dompurify'
import type { ShallowRef } from 'vue'
const purify = async (source: string) => {
let purify: typeof DOMPurify
let purify: DOMPurify.DOMPurifyI
if (import.meta.server) {
const jsdom = await import('jsdom')
+4 -2
View File
@@ -21,7 +21,8 @@
"lint:ci": "yarn lint:tsc && yarn lint:css",
"gqlgen": "graphql-codegen",
"gqlgen:watch": "graphql-codegen --watch",
"eslint:inspect": "eslint-config-inspector"
"eslint:inspect": "eslint-config-inspector",
"datadog:publish-sourcemaps:dev": "DATADOG_SITE=\"datadoghq.eu\" datadog-ci sourcemaps upload ./.output/public/_nuxt --service=\"fe2-dev/test\" --release-version=\"unknown\" --minified-path-prefix=/_nuxt"
},
"dependencies": {
"@apollo/client": "^3.13.8",
@@ -60,7 +61,7 @@
"@vueuse/core": "^10.9.0",
"apollo-upload-client": "^18.0.1",
"dayjs": "^1.11.7",
"dompurify": "^3.2.7",
"dompurify": "^3.0.4",
"graphql": "^16.6.0",
"ioredis": "^5.7.0",
"js-cookie": "^3.0.1",
@@ -87,6 +88,7 @@
"ws": "^8.17.1"
},
"devDependencies": {
"@datadog/datadog-ci": "^3.5.0",
"@eslint/config-inspector": "^0.4.10",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/client-preset": "^4.6.4",
+1 -1
View File
@@ -47,7 +47,7 @@
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.4.20",
"vite": "^5.2.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^1.6.0"
},
+1 -1
View File
@@ -26,6 +26,6 @@
"eslint-config-prettier": "^9.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^7.12.0",
"vite": "^6.3.6"
"vite": "^6.0.0"
}
}
+3 -1
View File
@@ -78,6 +78,7 @@
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.14",
"browserify-zlib": "^0.2.0",
"concurrently": "^8.0.1",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
@@ -87,12 +88,13 @@
"postcss": "^8.4.31",
"postcss-nesting": "^10.2.0",
"prettier": "^2.7.1",
"rollup-plugin-node-builtins": "^2.1.2",
"storybook": "^8.1.10",
"tailwindcss": "^3.3.2",
"type-fest": "^2.13.1",
"typescript": "^5.0.4",
"vee-validate": "4.7.0",
"vite": "^4.5.14",
"vite": "^4.5.2",
"vite-plugin-dts": "^4.5.4",
"vue": "^3.5.13",
"vue-tsc": "^2.2.2",
+8
View File
@@ -3,6 +3,9 @@ import vue from '@vitejs/plugin-vue'
import dts from 'vite-plugin-dts'
import pkg from './package.json'
import { resolve } from 'path'
import { createRequire } from 'node:module'
const require = createRequire(import.meta.url)
// https://vitejs.dev/config/
export default defineConfig({
@@ -39,6 +42,11 @@ export default defineConfig({
resolve: {
alias: {
// We need browser polyfills for crypto & zlib cause they seem to be bundled for the web
// for some reason when running storybook. Doesn't appear that these
// actually appear in any client-side bundles tho!
crypto: require.resolve('rollup-plugin-node-builtins'),
zlib: require.resolve('browserify-zlib'),
'~~/src': resolve(__dirname, './src')
}
}
+1 -1
View File
@@ -34,7 +34,7 @@
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"typescript": "^4.5.4",
"vite": "^5.4.20",
"vite": "^5.0.12",
"wrangler": "^3.51.2"
}
}
+1 -1
View File
@@ -88,7 +88,7 @@
"jsdom": "^24.0.0",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.79.2",
"rollup": "^2.70.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
+2934 -368
View File
File diff suppressed because it is too large Load Diff