Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit dcd26a9

Browse files
committed
fix: build
1 parent c264dbb commit dcd26a9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/openapi-parser/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
"rollup-plugin-webpack-stats": "^1.0.1",
6262
"tinybench": "^2.8.0",
6363
"tsc-alias": "^1.8.10",
64-
"tslib": "^2.6.3"
64+
"tslib": "^2.6.3",
65+
"typescript": "^5.5.3"
6566
},
6667
"dependencies": {
6768
"ajv": "^8.16.0",

packages/openapi-parser/rollup.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { builtinModules } from 'node:module'
66
import type { RollupOptions } from 'rollup'
77
import type { Plugin } from 'rollup'
88
import outputSize from 'rollup-plugin-output-size'
9-
import { webpackStats } from 'rollup-plugin-webpack-stats'
9+
import webpackStatsPlugin from 'rollup-plugin-webpack-stats'
1010

1111
const input = [
1212
'./src/index.ts',
@@ -59,7 +59,7 @@ const config: RollupOptions[] = [
5959
typescript(),
6060
json(),
6161
terser(),
62-
webpackStats(),
62+
webpackStatsPlugin(),
6363
outputSize(),
6464
],
6565
external: [

pnpm-lock.yaml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)