Skip to content

Commit 37d1915

Browse files
fix(deps): lock file maintenance minor/patch updates (#5988)
* fix(deps): lock file maintenance minor/patch updates * For some reason, declarations no longer work in tsconfig * Manually update SWC * Downgrade again as this does not solve current compile issues * As declarations no longer work properly, use imports instead --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <[email protected]>
1 parent fa4b284 commit 37d1915

File tree

10 files changed

+391
-403
lines changed

10 files changed

+391
-403
lines changed

package-lock.json

Lines changed: 377 additions & 394 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@
122122
"@codemirror/language": "^6.11.1",
123123
"@codemirror/search": "^6.5.11",
124124
"@codemirror/state": "^6.5.2",
125-
"@codemirror/view": "^6.37.1",
126-
"@eslint/js": "^9.28.0",
125+
"@codemirror/view": "^6.37.2",
126+
"@eslint/js": "^9.29.0",
127127
"@inquirer/prompts": "^7.5.3",
128128
"@jridgewell/sourcemap-codec": "^1.5.0",
129129
"@mermaid-js/mermaid-cli": "^11.4.3",
130130
"@napi-rs/cli": "^2.18.4",
131131
"@rollup/plugin-alias": "^5.1.1",
132132
"@rollup/plugin-buble": "^1.0.3",
133-
"@rollup/plugin-commonjs": "^28.0.3",
133+
"@rollup/plugin-commonjs": "^28.0.5",
134134
"@rollup/plugin-json": "^6.1.0",
135135
"@rollup/plugin-node-resolve": "^16.0.1",
136136
"@rollup/plugin-replace": "^6.0.2",
@@ -139,7 +139,7 @@
139139
"@rollup/pluginutils": "^5.1.4",
140140
"@shikijs/vitepress-twoslash": "^3.6.0",
141141
"@types/mocha": "^10.0.10",
142-
"@types/node": "^18.19.111",
142+
"@types/node": "^18.19.112",
143143
"@types/picomatch": "^4.0.0",
144144
"@types/semver": "^7.7.0",
145145
"@types/yargs-parser": "^21.0.3",
@@ -156,7 +156,7 @@
156156
"date-time": "^4.0.0",
157157
"es5-shim": "^4.6.7",
158158
"es6-shim": "^0.35.8",
159-
"eslint": "^9.28.0",
159+
"eslint": "^9.29.0",
160160
"eslint-config-prettier": "^10.1.5",
161161
"eslint-plugin-prettier": "^5.4.1",
162162
"eslint-plugin-unicorn": "^59.0.1",
@@ -168,7 +168,7 @@
168168
"globals": "^16.2.0",
169169
"husky": "^9.1.7",
170170
"is-reference": "^3.0.3",
171-
"lint-staged": "^16.1.0",
171+
"lint-staged": "^16.1.2",
172172
"locate-character": "^3.0.0",
173173
"magic-string": "^0.30.17",
174174
"memfs": "^4.17.2",
@@ -195,7 +195,7 @@
195195
"terser": "^5.42.0",
196196
"tslib": "^2.8.1",
197197
"typescript": "^5.8.3",
198-
"typescript-eslint": "^8.34.0",
198+
"typescript-eslint": "^8.34.1",
199199
"vite": "^6.3.5",
200200
"vitepress": "^1.6.3",
201201
"vue": "^3.5.16",
@@ -204,7 +204,7 @@
204204
"yargs-parser": "^21.1.1"
205205
},
206206
"overrides": {
207-
"axios": "^1.9.0",
207+
"axios": "^1.10.0",
208208
"semver": "^7.7.2",
209209
"readable-stream": "npm:@built-in/readable-stream@1",
210210
"esbuild": ">0.24.2"

rollup.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { fsEventsReplacement } from './build-plugins/fs-events-replacement';
2121
import getLicenseHandler from './build-plugins/generate-license-file';
2222
import getBanner from './build-plugins/get-banner';
2323
import replaceBrowserModules from './build-plugins/replace-browser-modules';
24+
import './typings/declarations';
2425

2526
const onwarn: WarningHandlerWithDefault = warning => {
2627
console.error(

src/ast/nodes/Identifier.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import isReference, { type NodeWithFieldDefinition } from 'is-reference';
22
import type MagicString from 'magic-string';
3+
import '../../../typings/declarations';
34
import type { NormalizedTreeshakingOptions } from '../../rollup/types';
45
import { BLANK } from '../../utils/blank';
56
import type { NodeRenderOptions, RenderOptions } from '../../utils/renderHelpers';

src/browser-entry.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
import '../typings/package.json';
2+
13
export { version as VERSION } from 'package.json';
24
export { defineConfig, default as rollup } from './rollup/rollup';

src/watch/fsevents-importer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type FsEvents from 'fsevents';
2+
import '../../typings/fsevents';
23

34
let fsEvents: typeof FsEvents;
45
let fsEventsImportError: Error | undefined;

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"rollup": ["./node_modules/rollup"]
1818
}
1919
},
20-
"include": ["typings/**/*.d.ts", "src", "cli", "browser", "rollup.config.ts", "native"],
20+
"include": ["typings", "src", "cli", "browser", "rollup.config.ts", "native"],
2121
"exclude": ["dist", "node_modules", "test/typescript", "browser/dist"]
2222
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)