fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update fastify example to match other examples pattern

Lubos 9a08d67b 5514de46

+52 -175
+1 -1
.changeset/gorgeous-cups-search.md
··· 2 2 '@hey-api/openapi-ts': minor 3 3 --- 4 4 5 - feat: add fastify-openapi-glue plugin 5 + feat: add `fastify` plugin
-2
examples/openapi-ts-axios/openapi-ts.config.ts
··· 4 4 client: '@hey-api/client-axios', 5 5 input: 6 6 'https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml', 7 - // 'https://raw.githubusercontent.com/Redocly/museum-openapi-example/main/openapi.yaml', 8 - // '../../packages/openapi-ts/test/spec/v3.json', 9 7 output: { 10 8 format: 'prettier', 11 9 lint: 'eslint',
+6 -2
examples/openapi-ts-fastify/openapi-ts.config.ts
··· 5 5 experimentalParser: true, 6 6 input: 7 7 'https://gist.githubusercontent.com/seriousme/55bd4c8ba2e598e416bb5543dcd362dc/raw/cf0b86ba37bb54bf1a6bf047c0ecf2a0ce4c62e0/petstore-v3.1.json', 8 - output: './src/gen', 9 - plugins: ['fastify'], 8 + output: { 9 + format: 'prettier', 10 + lint: 'eslint', 11 + path: './src/client', 12 + }, 13 + plugins: ['@hey-api/types', '@hey-api/services', 'fastify'], 10 14 });
+7 -4
examples/openapi-ts-fastify/package.json
··· 5 5 "type": "module", 6 6 "scripts": { 7 7 "openapi-ts": "openapi-ts", 8 - "typecheck": "tsc --noEmit", 9 - "test": "vitest" 8 + "test": "vitest", 9 + "typecheck": "tsc --noEmit" 10 10 }, 11 11 "dependencies": { 12 - "@hey-api/openapi-ts": "workspace:*", 12 + "@hey-api/client-fetch": "workspace:*", 13 13 "fastify": "5.0.0", 14 14 "fastify-openapi-glue": "4.7.1" 15 15 }, 16 16 "devDependencies": { 17 - "@hey-api/client-fetch": "workspace:*", 17 + "@hey-api/openapi-ts": "workspace:*", 18 + "eslint": "9.6.0", 19 + "prettier": "3.3.2", 20 + "typescript": "5.5.3", 18 21 "vitest": "2.1.5" 19 22 } 20 23 }
examples/openapi-ts-fastify/src/gen/fastify.gen.ts examples/openapi-ts-fastify/src/client/fastify.gen.ts
examples/openapi-ts-fastify/src/gen/index.ts examples/openapi-ts-fastify/src/client/index.ts
examples/openapi-ts-fastify/src/gen/services.gen.ts examples/openapi-ts-fastify/src/client/services.gen.ts
examples/openapi-ts-fastify/src/gen/types.gen.ts examples/openapi-ts-fastify/src/client/types.gen.ts
+1 -1
examples/openapi-ts-fastify/src/handlers.ts
··· 1 - import type { Pet, RouteHandlers } from './gen/fastify.gen'; 1 + import type { Pet, RouteHandlers } from './client/fastify.gen'; 2 2 3 3 export const serviceHandlers: Pick<RouteHandlers, 'showPetById'> = { 4 4 showPetById(request, reply) {
+1 -1
examples/openapi-ts-fastify/test/pets.test.ts
··· 1 1 import { type FastifyInstance } from 'fastify'; 2 - import { client, showPetById } from 'src/gen'; 2 + import { client, showPetById } from 'src/client'; 3 3 import { buildServer } from 'src/server'; 4 4 import { afterAll, beforeAll, describe, expect, test } from 'vitest'; 5 5
-2
examples/openapi-ts-fetch/openapi-ts.config.ts
··· 4 4 client: '@hey-api/client-fetch', 5 5 input: 6 6 'https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml', 7 - // 'https://raw.githubusercontent.com/Redocly/museum-openapi-example/main/openapi.yaml', 8 - // '../../packages/openapi-ts/test/spec/v3.json', 9 7 output: { 10 8 format: 'prettier', 11 9 lint: 'eslint',
-2
examples/openapi-ts-tanstack-svelte-query/openapi-ts.config.ts
··· 4 4 client: '@hey-api/client-fetch', 5 5 input: 6 6 'https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml', 7 - // 'https://raw.githubusercontent.com/Redocly/museum-openapi-example/main/openapi.yaml', 8 - // '../../packages/openapi-ts/test/spec/v3.json', 9 7 output: { 10 8 format: 'prettier', 11 9 lint: 'eslint',
-2
examples/openapi-ts-tanstack-vue-query/openapi-ts.config.ts
··· 4 4 client: '@hey-api/client-fetch', 5 5 input: 6 6 'https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml', 7 - // 'https://raw.githubusercontent.com/Redocly/museum-openapi-example/main/openapi.yaml', 8 - // '../../packages/openapi-ts/test/spec/v3.json', 9 7 output: { 10 8 format: 'prettier', 11 9 lint: 'eslint',
+36 -158
pnpm-lock.yaml
··· 151 151 152 152 examples/openapi-ts-fastify: 153 153 dependencies: 154 - '@hey-api/openapi-ts': 154 + '@hey-api/client-fetch': 155 155 specifier: workspace:* 156 - version: link:../../packages/openapi-ts 156 + version: link:../../packages/client-fetch 157 157 fastify: 158 158 specifier: 5.0.0 159 159 version: 5.0.0 ··· 161 161 specifier: 4.7.1 162 162 version: 4.7.1 163 163 devDependencies: 164 - '@hey-api/client-fetch': 164 + '@hey-api/openapi-ts': 165 165 specifier: workspace:* 166 - version: link:../../packages/client-fetch 166 + version: link:../../packages/openapi-ts 167 + eslint: 168 + specifier: 9.6.0 169 + version: 9.6.0 170 + prettier: 171 + specifier: 3.3.2 172 + version: 3.3.2 173 + typescript: 174 + specifier: 5.5.3 175 + version: 5.5.3 167 176 vitest: 168 177 specifier: 2.1.5 169 178 version: 2.1.5(@types/node@22.8.5)(jsdom@24.1.0)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) ··· 285 294 devDependencies: 286 295 '@angular-devkit/build-angular': 287 296 specifier: ^18.2.11 288 - version: 18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@types/node@22.8.5)(chokidar@3.6.0)(karma@6.4.4)(tailwindcss@3.4.9)(typescript@5.5.3) 297 + version: 18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@types/node@22.8.5)(chokidar@3.6.0)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.8.5)(typescript@5.5.3)))(typescript@5.5.3) 289 298 '@angular/cli': 290 299 specifier: ^18.2.11 291 300 version: 18.2.11(chokidar@3.6.0) ··· 9190 9199 typescript: 5.5.3 9191 9200 vite: 5.4.6(@types/node@22.8.5)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) 9192 9201 watchpack: 2.4.1 9193 - webpack: 5.94.0(esbuild@0.23.0) 9202 + webpack: 5.94.0(esbuild@0.23.1) 9194 9203 webpack-dev-middleware: 7.4.2(webpack@5.94.0(esbuild@0.23.0)) 9195 9204 webpack-dev-server: 5.0.4(webpack@5.94.0(esbuild@0.23.0)) 9196 9205 webpack-merge: 6.0.1 ··· 9217 9226 - utf-8-validate 9218 9227 - webpack-cli 9219 9228 9220 - '@angular-devkit/build-angular@18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@types/node@22.8.5)(chokidar@3.6.0)(karma@6.4.4)(tailwindcss@3.4.9)(typescript@5.5.3)': 9221 - dependencies: 9222 - '@ampproject/remapping': 2.3.0 9223 - '@angular-devkit/architect': 0.1802.11(chokidar@3.6.0) 9224 - '@angular-devkit/build-webpack': 0.1802.11(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(esbuild@0.23.0)))(webpack@5.94.0(esbuild@0.23.0)) 9225 - '@angular-devkit/core': 18.2.11(chokidar@3.6.0) 9226 - '@angular/build': 18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@types/node@22.8.5)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(tailwindcss@3.4.9)(terser@5.31.6)(typescript@5.5.3) 9227 - '@angular/compiler-cli': 18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3) 9228 - '@babel/core': 7.25.2 9229 - '@babel/generator': 7.25.0 9230 - '@babel/helper-annotate-as-pure': 7.24.7 9231 - '@babel/helper-split-export-declaration': 7.24.7 9232 - '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.25.2) 9233 - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2) 9234 - '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.2) 9235 - '@babel/preset-env': 7.25.3(@babel/core@7.25.2) 9236 - '@babel/runtime': 7.25.0 9237 - '@discoveryjs/json-ext': 0.6.1 9238 - '@ngtools/webpack': 18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(typescript@5.5.3)(webpack@5.94.0(esbuild@0.23.0)) 9239 - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6(@types/node@22.8.5)(less@4.2.0)(sass@1.77.6)(terser@5.31.6)) 9240 - ansi-colors: 4.1.3 9241 - autoprefixer: 10.4.20(postcss@8.4.41) 9242 - babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(esbuild@0.23.0)) 9243 - browserslist: 4.24.2 9244 - copy-webpack-plugin: 12.0.2(webpack@5.94.0(esbuild@0.23.0)) 9245 - critters: 0.0.24 9246 - css-loader: 7.1.2(webpack@5.94.0(esbuild@0.23.0)) 9247 - esbuild-wasm: 0.23.0 9248 - fast-glob: 3.3.2 9249 - http-proxy-middleware: 3.0.3 9250 - https-proxy-agent: 7.0.5 9251 - istanbul-lib-instrument: 6.0.3 9252 - jsonc-parser: 3.3.1 9253 - karma-source-map-support: 1.4.0 9254 - less: 4.2.0 9255 - less-loader: 12.2.0(less@4.2.0)(webpack@5.94.0(esbuild@0.23.0)) 9256 - license-webpack-plugin: 4.0.2(webpack@5.94.0(esbuild@0.23.0)) 9257 - loader-utils: 3.3.1 9258 - magic-string: 0.30.11 9259 - mini-css-extract-plugin: 2.9.0(webpack@5.94.0(esbuild@0.23.0)) 9260 - mrmime: 2.0.0 9261 - open: 10.1.0 9262 - ora: 5.4.1 9263 - parse5-html-rewriting-stream: 7.0.0 9264 - picomatch: 4.0.2 9265 - piscina: 4.6.1 9266 - postcss: 8.4.41 9267 - postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.3)(webpack@5.94.0(esbuild@0.23.0)) 9268 - resolve-url-loader: 5.0.0 9269 - rxjs: 7.8.1 9270 - sass: 1.77.6 9271 - sass-loader: 16.0.0(sass@1.77.6)(webpack@5.94.0(esbuild@0.23.0)) 9272 - semver: 7.6.3 9273 - source-map-loader: 5.0.0(webpack@5.94.0(esbuild@0.23.0)) 9274 - source-map-support: 0.5.21 9275 - terser: 5.31.6 9276 - tree-kill: 1.2.2 9277 - tslib: 2.6.3 9278 - typescript: 5.5.3 9279 - vite: 5.4.6(@types/node@22.8.5)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) 9280 - watchpack: 2.4.1 9281 - webpack: 5.94.0(esbuild@0.23.0) 9282 - webpack-dev-middleware: 7.4.2(webpack@5.94.0(esbuild@0.23.0)) 9283 - webpack-dev-server: 5.0.4(webpack@5.94.0(esbuild@0.23.0)) 9284 - webpack-merge: 6.0.1 9285 - webpack-subresource-integrity: 5.1.0(webpack@5.94.0(esbuild@0.23.0)) 9286 - optionalDependencies: 9287 - esbuild: 0.23.0 9288 - karma: 6.4.4 9289 - tailwindcss: 3.4.9(ts-node@10.9.2(@types/node@20.14.5)(typescript@5.5.3)) 9290 - transitivePeerDependencies: 9291 - - '@rspack/core' 9292 - - '@swc/core' 9293 - - '@types/node' 9294 - - bufferutil 9295 - - chokidar 9296 - - debug 9297 - - html-webpack-plugin 9298 - - lightningcss 9299 - - node-sass 9300 - - sass-embedded 9301 - - stylus 9302 - - sugarss 9303 - - supports-color 9304 - - uglify-js 9305 - - utf-8-validate 9306 - - webpack-cli 9307 - 9308 9229 '@angular-devkit/build-webpack@0.1802.11(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(esbuild@0.23.0)))(webpack@5.94.0(esbuild@0.23.0))': 9309 9230 dependencies: 9310 9231 '@angular-devkit/architect': 0.1802.11(chokidar@3.6.0) 9311 9232 rxjs: 7.8.1 9312 - webpack: 5.94.0(esbuild@0.23.0) 9233 + webpack: 5.94.0(esbuild@0.23.1) 9313 9234 webpack-dev-server: 5.0.4(webpack@5.94.0(esbuild@0.23.0)) 9314 9235 transitivePeerDependencies: 9315 9236 - chokidar ··· 9383 9304 - supports-color 9384 9305 - terser 9385 9306 9386 - '@angular/build@18.2.11(@angular/compiler-cli@18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@types/node@22.8.5)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(tailwindcss@3.4.9)(terser@5.31.6)(typescript@5.5.3)': 9387 - dependencies: 9388 - '@ampproject/remapping': 2.3.0 9389 - '@angular-devkit/architect': 0.1802.11(chokidar@3.6.0) 9390 - '@angular/compiler-cli': 18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3) 9391 - '@babel/core': 7.25.2 9392 - '@babel/helper-annotate-as-pure': 7.24.7 9393 - '@babel/helper-split-export-declaration': 7.24.7 9394 - '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) 9395 - '@inquirer/confirm': 3.1.22 9396 - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6(@types/node@22.8.5)(less@4.2.0)(sass@1.77.6)(terser@5.31.6)) 9397 - browserslist: 4.24.2 9398 - critters: 0.0.24 9399 - esbuild: 0.23.0 9400 - fast-glob: 3.3.2 9401 - https-proxy-agent: 7.0.5 9402 - listr2: 8.2.4 9403 - lmdb: 3.0.13 9404 - magic-string: 0.30.11 9405 - mrmime: 2.0.0 9406 - parse5-html-rewriting-stream: 7.0.0 9407 - picomatch: 4.0.2 9408 - piscina: 4.6.1 9409 - rollup: 4.22.4 9410 - sass: 1.77.6 9411 - semver: 7.6.3 9412 - typescript: 5.5.3 9413 - vite: 5.4.6(@types/node@22.8.5)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) 9414 - watchpack: 2.4.1 9415 - optionalDependencies: 9416 - less: 4.2.0 9417 - postcss: 8.4.41 9418 - tailwindcss: 3.4.9(ts-node@10.9.2(@types/node@20.14.5)(typescript@5.5.3)) 9419 - transitivePeerDependencies: 9420 - - '@types/node' 9421 - - chokidar 9422 - - lightningcss 9423 - - sass-embedded 9424 - - stylus 9425 - - sugarss 9426 - - supports-color 9427 - - terser 9428 - 9429 9307 '@angular/cdk@18.2.12(@angular/common@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)': 9430 9308 dependencies: 9431 9309 '@angular/common': 18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) ··· 10999 10877 '@eslint/config-array@0.17.0': 11000 10878 dependencies: 11001 10879 '@eslint/object-schema': 2.1.4 11002 - debug: 4.3.5 10880 + debug: 4.3.7 11003 10881 minimatch: 3.1.2 11004 10882 transitivePeerDependencies: 11005 10883 - supports-color ··· 11344 11222 dependencies: 11345 11223 '@angular/compiler-cli': 18.2.11(@angular/compiler@18.2.11(@angular/core@18.2.11(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3) 11346 11224 typescript: 5.5.3 11347 - webpack: 5.94.0(esbuild@0.23.0) 11225 + webpack: 5.94.0(esbuild@0.23.1) 11348 11226 11349 11227 '@nodelib/fs.scandir@2.1.5': 11350 11228 dependencies: ··· 13591 13469 '@babel/core': 7.25.2 13592 13470 find-cache-dir: 4.0.0 13593 13471 schema-utils: 4.2.0 13594 - webpack: 5.94.0(esbuild@0.23.0) 13472 + webpack: 5.94.0(esbuild@0.23.1) 13595 13473 13596 13474 babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2): 13597 13475 dependencies: ··· 14054 13932 normalize-path: 3.0.0 14055 13933 schema-utils: 4.2.0 14056 13934 serialize-javascript: 6.0.2 14057 - webpack: 5.94.0(esbuild@0.23.0) 13935 + webpack: 5.94.0(esbuild@0.23.1) 14058 13936 14059 13937 core-js-compat@3.39.0: 14060 13938 dependencies: ··· 14111 13989 postcss-value-parser: 4.2.0 14112 13990 semver: 7.6.3 14113 13991 optionalDependencies: 14114 - webpack: 5.94.0(esbuild@0.23.0) 13992 + webpack: 5.94.0(esbuild@0.23.1) 14115 13993 14116 13994 css-select@5.1.0: 14117 13995 dependencies: ··· 14659 14537 ajv: 6.12.6 14660 14538 chalk: 4.1.2 14661 14539 cross-spawn: 7.0.3 14662 - debug: 4.3.5 14540 + debug: 4.3.7 14663 14541 escape-string-regexp: 4.0.0 14664 14542 eslint-scope: 8.0.1 14665 14543 eslint-visitor-keys: 4.0.0 ··· 15693 15571 dependencies: 15694 15572 less: 4.2.0 15695 15573 optionalDependencies: 15696 - webpack: 5.94.0(esbuild@0.23.0) 15574 + webpack: 5.94.0(esbuild@0.23.1) 15697 15575 15698 15576 less@4.2.0: 15699 15577 dependencies: ··· 15718 15596 dependencies: 15719 15597 webpack-sources: 3.2.3 15720 15598 optionalDependencies: 15721 - webpack: 5.94.0(esbuild@0.23.0) 15599 + webpack: 5.94.0(esbuild@0.23.1) 15722 15600 15723 15601 light-my-request@6.3.0: 15724 15602 dependencies: ··· 15999 15877 dependencies: 16000 15878 schema-utils: 4.2.0 16001 15879 tapable: 2.2.1 16002 - webpack: 5.94.0(esbuild@0.23.0) 15880 + webpack: 5.94.0(esbuild@0.23.1) 16003 15881 16004 15882 minimalistic-assert@1.0.1: {} 16005 15883 ··· 16636 16514 postcss: 8.4.41 16637 16515 semver: 7.6.3 16638 16516 optionalDependencies: 16639 - webpack: 5.94.0(esbuild@0.23.0) 16517 + webpack: 5.94.0(esbuild@0.23.1) 16640 16518 transitivePeerDependencies: 16641 16519 - typescript 16642 16520 ··· 17104 16982 neo-async: 2.6.2 17105 16983 optionalDependencies: 17106 16984 sass: 1.77.6 17107 - webpack: 5.94.0(esbuild@0.23.0) 16985 + webpack: 5.94.0(esbuild@0.23.1) 17108 16986 17109 16987 sass@1.77.6: 17110 16988 dependencies: ··· 17376 17254 dependencies: 17377 17255 iconv-lite: 0.6.3 17378 17256 source-map-js: 1.2.1 17379 - webpack: 5.94.0(esbuild@0.23.0) 17257 + webpack: 5.94.0(esbuild@0.23.1) 17380 17258 17381 17259 source-map-support@0.5.21: 17382 17260 dependencies: ··· 17745 17623 17746 17624 term-size@2.2.1: {} 17747 17625 17748 - terser-webpack-plugin@5.3.10(esbuild@0.23.0)(webpack@5.94.0(esbuild@0.23.0)): 17626 + terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.94.0(esbuild@0.23.0)): 17749 17627 dependencies: 17750 17628 '@jridgewell/trace-mapping': 0.3.25 17751 17629 jest-worker: 27.5.1 17752 17630 schema-utils: 3.3.0 17753 17631 serialize-javascript: 6.0.2 17754 17632 terser: 5.31.6 17755 - webpack: 5.94.0(esbuild@0.23.0) 17633 + webpack: 5.94.0(esbuild@0.23.1) 17756 17634 optionalDependencies: 17757 - esbuild: 0.23.0 17635 + esbuild: 0.23.1 17758 17636 17759 17637 terser@5.31.6: 17760 17638 dependencies: ··· 18563 18441 range-parser: 1.2.1 18564 18442 schema-utils: 4.2.0 18565 18443 optionalDependencies: 18566 - webpack: 5.94.0(esbuild@0.23.0) 18444 + webpack: 5.94.0(esbuild@0.23.1) 18567 18445 18568 18446 webpack-dev-server@5.0.4(webpack@5.94.0(esbuild@0.23.0)): 18569 18447 dependencies: ··· 18598 18476 webpack-dev-middleware: 7.4.2(webpack@5.94.0(esbuild@0.23.0)) 18599 18477 ws: 8.17.1 18600 18478 optionalDependencies: 18601 - webpack: 5.94.0(esbuild@0.23.0) 18479 + webpack: 5.94.0(esbuild@0.23.1) 18602 18480 transitivePeerDependencies: 18603 18481 - bufferutil 18604 18482 - debug ··· 18616 18494 webpack-subresource-integrity@5.1.0(webpack@5.94.0(esbuild@0.23.0)): 18617 18495 dependencies: 18618 18496 typed-assert: 1.0.9 18619 - webpack: 5.94.0(esbuild@0.23.0) 18497 + webpack: 5.94.0(esbuild@0.23.1) 18620 18498 18621 - webpack@5.94.0(esbuild@0.23.0): 18499 + webpack@5.94.0(esbuild@0.23.1): 18622 18500 dependencies: 18623 18501 '@types/estree': 1.0.5 18624 18502 '@webassemblyjs/ast': 1.12.1 ··· 18640 18518 neo-async: 2.6.2 18641 18519 schema-utils: 3.3.0 18642 18520 tapable: 2.2.1 18643 - terser-webpack-plugin: 5.3.10(esbuild@0.23.0)(webpack@5.94.0(esbuild@0.23.0)) 18521 + terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.94.0(esbuild@0.23.0)) 18644 18522 watchpack: 2.4.1 18645 18523 webpack-sources: 3.2.3 18646 18524 transitivePeerDependencies: