diff --git a/package.json b/package.json index 9564639c06..6e8a61244f 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "case-police": "0.6.1", "changelogen": "0.5.5", "consola": "3.2.3", - "devalue": "4.3.2", + "devalue": "5.0.0", "eslint": "9.0.0", "eslint-plugin-no-only-tests": "3.1.0", "eslint-plugin-perfectionist": "2.9.0", diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index 2858c01ac0..9f75ae0b99 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -76,7 +76,7 @@ "cookie-es": "^1.1.0", "defu": "^6.1.4", "destr": "^2.0.3", - "devalue": "^4.3.2", + "devalue": "^5.0.0", "esbuild": "^0.20.2", "escape-string-regexp": "^5.0.0", "estree-walker": "^3.0.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2518f8a42f..6651b40370 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -65,8 +65,8 @@ importers: specifier: 3.2.3 version: 3.2.3 devalue: - specifier: 4.3.2 - version: 4.3.2 + specifier: 5.0.0 + version: 5.0.0 eslint: specifier: 9.0.0 version: 9.0.0 @@ -294,8 +294,8 @@ importers: specifier: ^2.0.3 version: 2.0.3 devalue: - specifier: ^4.3.2 - version: 4.3.2 + specifier: ^5.0.0 + version: 5.0.0 esbuild: specifier: ^0.20.2 version: 0.20.2 @@ -3495,8 +3495,8 @@ packages: resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} engines: {node: '>=8'} - devalue@4.3.2: - resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==} + devalue@5.0.0: + resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==} devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} @@ -9996,7 +9996,7 @@ snapshots: detect-libc@2.0.2: {} - devalue@4.3.2: {} + devalue@5.0.0: {} devlop@1.1.0: dependencies: diff --git a/test/bundle.test.ts b/test/bundle.test.ts index 73b5ce2dc6..d85496b908 100644 --- a/test/bundle.test.ts +++ b/test/bundle.test.ts @@ -35,7 +35,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot('"209k"') const modules = await analyzeSizes('node_modules/**/*', serverDir) - expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1336k"`) + expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1337k"`) const packages = modules.files .filter(m => m.endsWith('package.json')) @@ -75,7 +75,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"528k"`) const modules = await analyzeSizes('node_modules/**/*', serverDir) - expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"75.7k"`) + expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"76.0k"`) const packages = modules.files .filter(m => m.endsWith('package.json'))