diff --git a/e2e/package.json b/e2e/package.json index 8c8414dce..47934cb11 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@e2e/helper": "workspace:*", "@playwright/test": "1.43.1", - "@rsbuild/core": "1.0.1-beta.10", + "@rsbuild/core": "1.0.1-beta.11", "@rslib/core": "workspace:*", "@rslib/tsconfig": "workspace:*", "@types/fs-extra": "^11.0.4", diff --git a/examples/express-plugin/package.json b/examples/express-plugin/package.json index 8ef87e60a..3c1e4602c 100644 --- a/examples/express-plugin/package.json +++ b/examples/express-plugin/package.json @@ -9,7 +9,7 @@ "@rslib/core": "workspace:*", "@types/express": "^4.17.21", "express": "^4.19.2", - "typescript": "^5.5.3" + "typescript": "^5.5.4" }, "peerDependencies": { "express": "^4" diff --git a/examples/react-component/package.json b/examples/react-component/package.json index a41955323..e20872a06 100644 --- a/examples/react-component/package.json +++ b/examples/react-component/package.json @@ -5,7 +5,7 @@ "build": "rslib build" }, "devDependencies": { - "@rsbuild/plugin-react": "1.0.1-beta.9", + "@rsbuild/plugin-react": "1.0.1-beta.11", "@rslib/core": "workspace:*", "@types/react": "^18.3.3", "react": "^18.3.1" diff --git a/package.json b/package.json index 7cf5eb35c..6f45ec69f 100644 --- a/package.json +++ b/package.json @@ -38,10 +38,10 @@ "fs-extra": "^11.2.0", "nano-staged": "^0.8.0", "nx": "^19.4.2", - "prettier": "^3.3.2", - "prettier-plugin-packagejson": "^2.5.0", + "prettier": "^3.3.3", + "prettier-plugin-packagejson": "^2.5.1", "simple-git-hooks": "^2.11.1", - "typescript": "^5.5.3", + "typescript": "^5.5.4", "vitest": "^2.0.5" }, "packageManager": "pnpm@9.5.0", diff --git a/packages/core/package.json b/packages/core/package.json index afc218721..d0157a16d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -38,7 +38,7 @@ "prebundle": "prebundle" }, "dependencies": { - "@rsbuild/core": "1.0.1-beta.10", + "@rsbuild/core": "1.0.1-beta.11", "rsbuild-plugin-dts": "workspace:*" }, "devDependencies": { @@ -51,7 +51,7 @@ "picocolors": "1.0.1", "prebundle": "1.1.0", "rslog": "^1.2.2", - "typescript": "^5.5.3" + "typescript": "^5.5.4" }, "peerDependencies": { "@microsoft/api-extractor": "^7", diff --git a/packages/core/src/build.ts b/packages/core/src/build.ts index 5fb3d22ff..a4894f95b 100644 --- a/packages/core/src/build.ts +++ b/packages/core/src/build.ts @@ -10,7 +10,6 @@ export async function build( const rsbuildInstance = await initRsbuild(config); await rsbuildInstance.build({ - mode: 'production', watch: options?.watch, }); diff --git a/packages/core/src/cli/commands.ts b/packages/core/src/cli/commands.ts index 40997e4a6..751df47a0 100644 --- a/packages/core/src/cli/commands.ts +++ b/packages/core/src/cli/commands.ts @@ -14,7 +14,7 @@ export type BuildOptions = CommonOptions & { }; export type InspectOptions = CommonOptions & { - env: RsbuildMode; + mode: RsbuildMode; output: string; verbose?: boolean; }; @@ -64,7 +64,7 @@ export function runCli(): void { const rslibConfig = await loadConfig(options.config, options.envMode); const rsbuildInstance = await initRsbuild(rslibConfig); await rsbuildInstance.inspectConfig({ - env: options.env, + mode: options.mode, verbose: options.verbose, outputPath: options.output, writeToDisk: true, diff --git a/packages/core/src/config.ts b/packages/core/src/config.ts index 98fa4e3a1..d1ee498d0 100644 --- a/packages/core/src/config.ts +++ b/packages/core/src/config.ts @@ -142,6 +142,7 @@ export const composeAutoExternalConfig = (options: { export async function createInternalRsbuildConfig(): Promise { return defineRsbuildConfig({ + mode: 'production', dev: { progressBar: false, }, diff --git a/packages/core/tests/__snapshots__/config.test.ts.snap b/packages/core/tests/__snapshots__/config.test.ts.snap index e7ac347d6..8f81e9615 100644 --- a/packages/core/tests/__snapshots__/config.test.ts.snap +++ b/packages/core/tests/__snapshots__/config.test.ts.snap @@ -7,6 +7,7 @@ exports[`Should compose create Rsbuild config correctly > Merge Rsbuild config 1 "dev": { "progressBar": false, }, + "mode": "production", "output": { "distPath": { "js": "./", @@ -81,6 +82,7 @@ exports[`Should compose create Rsbuild config correctly > Merge Rsbuild config 1 "dev": { "progressBar": false, }, + "mode": "production", "output": { "distPath": { "js": "./", @@ -153,6 +155,7 @@ exports[`Should compose create Rsbuild config correctly > Merge Rsbuild config 1 "dev": { "progressBar": false, }, + "mode": "production", "output": { "distPath": { "js": "./", diff --git a/packages/plugin-dts/package.json b/packages/plugin-dts/package.json index e7fd94536..e04da54db 100644 --- a/packages/plugin-dts/package.json +++ b/packages/plugin-dts/package.json @@ -34,10 +34,10 @@ "picocolors": "1.0.1" }, "devDependencies": { - "@microsoft/api-extractor": "^7.47.4", - "@rsbuild/core": "1.0.1-beta.10", + "@microsoft/api-extractor": "^7.47.5", + "@rsbuild/core": "1.0.1-beta.11", "@rslib/tsconfig": "workspace:*", - "typescript": "^5.5.3" + "typescript": "^5.5.4" }, "peerDependencies": { "@microsoft/api-extractor": "^7", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6aa301ba6..efb464638 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 1.8.3 '@modern-js/module-tools': specifier: ^2.55.0 - version: 2.55.0(typescript@5.5.3) + version: 2.55.0(typescript@5.5.4) '@types/fs-extra': specifier: ^11.0.4 version: 11.0.4 @@ -42,17 +42,17 @@ importers: specifier: ^19.4.2 version: 19.4.2 prettier: - specifier: ^3.3.2 - version: 3.3.2 + specifier: ^3.3.3 + version: 3.3.3 prettier-plugin-packagejson: - specifier: ^2.5.0 - version: 2.5.0(prettier@3.3.2) + specifier: ^2.5.1 + version: 2.5.1(prettier@3.3.3) simple-git-hooks: specifier: ^2.11.1 version: 2.11.1 typescript: - specifier: ^5.5.3 - version: 5.5.3 + specifier: ^5.5.4 + version: 5.5.4 vitest: specifier: ^2.0.5 version: 2.0.5(@types/node@18.19.39)(terser@5.19.2) @@ -70,8 +70,8 @@ importers: specifier: 1.43.1 version: 1.43.1 '@rsbuild/core': - specifier: 1.0.1-beta.10 - version: 1.0.1-beta.10 + specifier: 1.0.1-beta.11 + version: 1.0.1-beta.11 '@rslib/core': specifier: workspace:* version: link:../packages/core @@ -157,14 +157,14 @@ importers: specifier: ^4.19.2 version: 4.19.2 typescript: - specifier: ^5.5.3 - version: 5.5.3 + specifier: ^5.5.4 + version: 5.5.4 examples/react-component: devDependencies: '@rsbuild/plugin-react': - specifier: 1.0.1-beta.9 - version: 1.0.1-beta.9(@rsbuild/core@1.0.1-beta.10) + specifier: 1.0.1-beta.11 + version: 1.0.1-beta.11(@rsbuild/core@1.0.1-beta.11) '@rslib/core': specifier: workspace:* version: link:../../packages/core @@ -181,8 +181,8 @@ importers: specifier: ^7 version: 7.47.2(@types/node@18.19.39) '@rsbuild/core': - specifier: 1.0.1-beta.10 - version: 1.0.1-beta.10 + specifier: 1.0.1-beta.11 + version: 1.0.1-beta.11 rsbuild-plugin-dts: specifier: workspace:* version: link:../plugin-dts @@ -210,13 +210,13 @@ importers: version: 1.0.1 prebundle: specifier: 1.1.0 - version: 1.1.0(typescript@5.5.3) + version: 1.1.0(typescript@5.5.4) rslog: specifier: ^1.2.2 version: 1.2.2 typescript: - specifier: ^5.5.3 - version: 5.5.3 + specifier: ^5.5.4 + version: 5.5.4 packages/plugin-dts: dependencies: @@ -228,17 +228,17 @@ importers: version: 1.0.1 devDependencies: '@microsoft/api-extractor': - specifier: ^7.47.4 - version: 7.47.4(@types/node@18.19.39) + specifier: ^7.47.5 + version: 7.47.5(@types/node@18.19.39) '@rsbuild/core': - specifier: 1.0.1-beta.10 - version: 1.0.1-beta.10 + specifier: 1.0.1-beta.11 + version: 1.0.1-beta.11 '@rslib/tsconfig': specifier: workspace:* version: link:../../scripts/tsconfig typescript: - specifier: ^5.5.3 - version: 5.5.3 + specifier: ^5.5.4 + version: 5.5.4 scripts/tsconfig: dependencies: @@ -976,8 +976,8 @@ packages: resolution: {integrity: sha512-YWE2HGrSTZaPPSr7xiNizSuViZpC7Jsa7+DwRW5rYVgrMXNbfX/PpBOoSkl5uaz9I2sv2JKLJ75kVNt64BvS3g==} hasBin: true - '@microsoft/api-extractor@7.47.4': - resolution: {integrity: sha512-HKm+P4VNzWwvq1Ey+Jfhhj/3MjsD+ka2hbt8L5AcRM95lu1MFOYnz3XlU7Gr79Q/ZhOb7W/imAKeYrOI0bFydg==} + '@microsoft/api-extractor@7.47.5': + resolution: {integrity: sha512-edKt4dFO2t25xmI2FX2rsP5liIgwKW1yuQImA0JM+5YGHCoo51GEQ7j+On17SvVpRJnuqLE/QVgtjIQ1Hpg98w==} hasBin: true '@microsoft/tsdoc-config@0.17.0': @@ -1263,15 +1263,15 @@ packages: cpu: [x64] os: [win32] - '@rsbuild/core@1.0.1-beta.10': - resolution: {integrity: sha512-F2xVOiUXmv9PhtgXnxtelE2Ay6gwsU2MjLur+PNF63QJB4VhV1KMWedt0cEw6m3KR6/n6laWY3PXv8TxGA99iA==} + '@rsbuild/core@1.0.1-beta.11': + resolution: {integrity: sha512-z0/cYT5R2IQmPxonmoVwlSpaN/NuyoJi+XhHLbLHP1kCsyBNKUdUelCUOOOZYJqG1w2tAhvY2rox8Chxyh96Gg==} engines: {node: '>=16.7.0'} hasBin: true - '@rsbuild/plugin-react@1.0.1-beta.9': - resolution: {integrity: sha512-MX5bWSEW5Nr8jhNAVxWlNVnraJxtOYTEZna5znaypLv7m4V8w0go1Nzb210ueRSbFCEYvP+zJZzkq33m+3TWXQ==} + '@rsbuild/plugin-react@1.0.1-beta.11': + resolution: {integrity: sha512-9WtgSIv4s3w5ExPQeEcRDNkVyom7mYHU8KcM3tqPYoJdp4YH4U3bmwHZaWT9ySGGjOH0Rd0emFvQKCy0K3pmQA==} peerDependencies: - '@rsbuild/core': ^1.0.1-beta.9 + '@rsbuild/core': ^1.0.1-beta.11 '@rspack/binding-canary@1.0.0-canary-af0452f-20240808052639': resolution: {integrity: sha512-VayW6Eytqn7TzoKvTeVR8k29JgEPOmnUFPRyoaf+QlATDR0pht4vwHeHCEYL587yxMw7pZ+DxfXgB1ReIViesA==} @@ -1334,12 +1334,12 @@ packages: resolution: {integrity: sha512-YpKLntATp0tML6ILrUmANCC6geUosgRK71xy78Vo1v2urSV1v2MB08VL6sbrjy99GnDWzf5f/bzrtmeC78GOVw==} engines: {node: '>=16.0.0'} - '@rspack/lite-tapable@1.0.0-beta.2': - resolution: {integrity: sha512-pDcrOH7tejguIxzcMUnCb5FCrz9GWtAnS3dVG6O/P4l7OWtcOBI3F1TQUsEy1u2WpMpH9ruPHRCSIliBfUymLg==} + '@rspack/lite-tapable@1.0.0-beta.3': + resolution: {integrity: sha512-K/OwOFX4SsILeSAJtmVCoBZUPaXLNFGeIXerK0SY09in8+0i21c+luZAhjlD0mH9+cD2A/zBGL+GIEPKkW6IwQ==} engines: {node: '>=16.0.0'} - '@rspack/plugin-react-refresh@1.0.0-beta.1': - resolution: {integrity: sha512-TLv3aB0NJtGPY38cMktnEkJ64RGLCed7MxQhc7f6V5FzOc3cZldTYSMThTZw1R/APc7GIHC4A26Ny5IogYlzvw==} + '@rspack/plugin-react-refresh@1.0.0-beta.3': + resolution: {integrity: sha512-Gq/pdkmaklw6ZlvFL/YXWkXatDQQkFx8HobrRTKnqysfx00Ly2WZ8x+gJCc0PMiB7aL6SdI0EsgIchG+sLUSnQ==} peerDependencies: react-refresh: '>=0.10.0 <1.0.0' peerDependenciesMeta: @@ -1387,8 +1387,8 @@ packages: '@rushstack/ts-command-line@4.22.2': resolution: {integrity: sha512-xkvrGd6D9dPlI3I401Thc640WNsEPB1sGEmy12a2VJaPQPwhE6Ik0gEVPZJ/2G1w213eaCAdxUY1xpiTulsmpA==} - '@rushstack/ts-command-line@4.22.3': - resolution: {integrity: sha512-edMpWB3QhFFZ4KtSzS8WNjBgR4PXPPOVrOHMbb7kNpmQ1UFS9HdVtjCXg1H5fG+xYAbeE+TMPcVPUyX2p84STA==} + '@rushstack/ts-command-line@4.22.4': + resolution: {integrity: sha512-QoyhbWfyF9Ixg5DWdPzxO3h2RmJ7i5WH9b7qLzD5h5WFya/ZqicjdPrVwQiGtrFvAbBj8jhcC9DhbzU9xAk78g==} '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -1629,9 +1629,6 @@ packages: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} - caniuse-lite@1.0.30001641: - resolution: {integrity: sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==} - caniuse-lite@1.0.30001649: resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} @@ -2646,8 +2643,8 @@ packages: resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} engines: {node: '>=10'} - prettier-plugin-packagejson@2.5.0: - resolution: {integrity: sha512-6XkH3rpin5QEQodBSVNg+rBo4r91g/1mCaRwS1YGdQJZ6jwqrg2UchBsIG9tpS1yK1kNBvOt84OILsX8uHzBGg==} + prettier-plugin-packagejson@2.5.1: + resolution: {integrity: sha512-6i4PW1KxEA+VrokYNGeI/q8qQX3u5DNBc7eLr9GX4OrvWr9DMls1lhbuNopkKG7Li9rTNxerWnYQyjxoUO4ROA==} peerDependencies: prettier: '>= 1.16.0' peerDependenciesMeta: @@ -2659,8 +2656,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - prettier@3.3.2: - resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} + prettier@3.3.3: + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} engines: {node: '>=14'} hasBin: true @@ -2956,8 +2953,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - synckit@0.9.0: - resolution: {integrity: sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==} + synckit@0.9.1: + resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} engines: {node: ^14.18.0 || >=16.0.0} table@6.8.2: @@ -3065,8 +3062,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.5.3: - resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + typescript@5.5.4: + resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} engines: {node: '>=14.17'} hasBin: true @@ -3914,7 +3911,7 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.47.4(@types/node@18.19.39)': + '@microsoft/api-extractor@7.47.5(@types/node@18.19.39)': dependencies: '@microsoft/api-extractor-model': 7.29.4(@types/node@18.19.39) '@microsoft/tsdoc': 0.15.0 @@ -3922,7 +3919,7 @@ snapshots: '@rushstack/node-core-library': 5.5.1(@types/node@18.19.39) '@rushstack/rig-package': 0.5.3 '@rushstack/terminal': 0.13.3(@types/node@18.19.39) - '@rushstack/ts-command-line': 4.22.3(@types/node@18.19.39) + '@rushstack/ts-command-line': 4.22.4(@types/node@18.19.39) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.8 @@ -3948,7 +3945,7 @@ snapshots: '@modern-js/utils': 2.55.0 '@swc/helpers': 0.5.3 - '@modern-js/module-tools@2.55.0(typescript@5.5.3)': + '@modern-js/module-tools@2.55.0(typescript@5.5.4)': dependencies: '@ampproject/remapping': 2.3.0 '@ast-grep/napi': 0.16.0 @@ -3978,7 +3975,7 @@ snapshots: terser: 5.19.2 tsconfig-paths-webpack-plugin: 4.1.0 optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - debug - eslint @@ -4065,7 +4062,7 @@ snapshots: '@modern-js/utils@2.55.0': dependencies: '@swc/helpers': 0.5.3 - caniuse-lite: 1.0.30001641 + caniuse-lite: 1.0.30001649 lodash: 4.17.21 rslog: 1.2.2 @@ -4195,20 +4192,20 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.18.1': optional: true - '@rsbuild/core@1.0.1-beta.10': + '@rsbuild/core@1.0.1-beta.11': dependencies: '@rspack/core': '@rspack/core-canary@1.0.0-canary-af0452f-20240808052639(@swc/helpers@0.5.11)' - '@rspack/lite-tapable': 1.0.0-beta.2 + '@rspack/lite-tapable': 1.0.0-beta.3 '@swc/helpers': 0.5.11 caniuse-lite: 1.0.30001649 core-js: 3.37.1 optionalDependencies: fsevents: 2.3.3 - '@rsbuild/plugin-react@1.0.1-beta.9(@rsbuild/core@1.0.1-beta.10)': + '@rsbuild/plugin-react@1.0.1-beta.11(@rsbuild/core@1.0.1-beta.11)': dependencies: - '@rsbuild/core': 1.0.1-beta.10 - '@rspack/plugin-react-refresh': 1.0.0-beta.1(react-refresh@0.14.2) + '@rsbuild/core': 1.0.1-beta.11 + '@rspack/plugin-react-refresh': 1.0.0-beta.3(react-refresh@0.14.2) react-refresh: 0.14.2 '@rspack/binding-canary@1.0.0-canary-af0452f-20240808052639': @@ -4261,9 +4258,9 @@ snapshots: '@rspack/lite-tapable-canary@1.0.0-canary-af0452f-20240808052639': {} - '@rspack/lite-tapable@1.0.0-beta.2': {} + '@rspack/lite-tapable@1.0.0-beta.3': {} - '@rspack/plugin-react-refresh@1.0.0-beta.1(react-refresh@0.14.2)': + '@rspack/plugin-react-refresh@1.0.0-beta.3(react-refresh@0.14.2)': dependencies: error-stack-parser: 2.1.4 html-entities: 2.5.2 @@ -4329,7 +4326,7 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@rushstack/ts-command-line@4.22.3(@types/node@18.19.39)': + '@rushstack/ts-command-line@4.22.4(@types/node@18.19.39)': dependencies: '@rushstack/terminal': 0.13.3(@types/node@18.19.39) '@types/argparse': 1.0.38 @@ -4590,7 +4587,7 @@ snapshots: browserslist@4.23.2: dependencies: - caniuse-lite: 1.0.30001641 + caniuse-lite: 1.0.30001649 electron-to-chromium: 1.4.827 node-releases: 2.0.14 update-browserslist-db: 1.1.0(browserslist@4.23.2) @@ -4614,8 +4611,6 @@ snapshots: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - caniuse-lite@1.0.30001641: {} - caniuse-lite@1.0.30001649: {} chai@5.1.1: @@ -5631,11 +5626,11 @@ snapshots: picocolors: 1.0.1 source-map-js: 1.2.0 - prebundle@1.1.0(typescript@5.5.3): + prebundle@1.1.0(typescript@5.5.4): dependencies: '@vercel/ncc': 0.38.1 rollup: 4.18.1 - rollup-plugin-dts: 6.1.1(rollup@4.18.1)(typescript@5.5.3) + rollup-plugin-dts: 6.1.1(rollup@4.18.1)(typescript@5.5.4) transitivePeerDependencies: - typescript @@ -5646,16 +5641,16 @@ snapshots: path-exists: 4.0.0 which-pm: 2.2.0 - prettier-plugin-packagejson@2.5.0(prettier@3.3.2): + prettier-plugin-packagejson@2.5.1(prettier@3.3.3): dependencies: sort-package-json: 2.10.0 - synckit: 0.9.0 + synckit: 0.9.1 optionalDependencies: - prettier: 3.3.2 + prettier: 3.3.3 prettier@2.8.8: {} - prettier@3.3.2: {} + prettier@3.3.3: {} pretty-format@29.7.0: dependencies: @@ -5735,11 +5730,11 @@ snapshots: reusify@1.0.4: {} - rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@5.5.3): + rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@5.5.4): dependencies: magic-string: 0.30.10 rollup: 4.18.1 - typescript: 5.5.3 + typescript: 5.5.4 optionalDependencies: '@babel/code-frame': 7.24.7 @@ -5961,7 +5956,7 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - synckit@0.9.0: + synckit@0.9.1: dependencies: '@pkgr/core': 0.1.1 tslib: 2.6.3 @@ -6058,7 +6053,7 @@ snapshots: typescript@5.4.2: {} - typescript@5.5.3: {} + typescript@5.5.4: {} undici-types@5.26.5: {}