File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -137,15 +137,11 @@ export const deepImportRE = /^([^@][^/]*)\/|^(@[^/]+\/[^/]+)\//
137
137
// TODO: use import()
138
138
const _require = createRequire ( import . meta. url )
139
139
140
- export function resolveDependencyVersion (
141
- dep : string ,
142
- pkgRelativePath = '../../package.json' ,
143
- ) : string {
144
- const pkgPath = path . resolve ( _require . resolve ( dep ) , pkgRelativePath )
145
- return JSON . parse ( fs . readFileSync ( pkgPath , 'utf-8' ) ) . version
146
- }
140
+ const _dirname = path . dirname ( fileURLToPath ( import . meta. url ) )
147
141
148
- export const rollupVersion = resolveDependencyVersion ( 'rollup' )
142
+ // NOTE: we don't use VERSION variable exported from rollup to avoid importing rollup in dev
143
+ export const rollupVersion =
144
+ resolvePackageData ( 'rollup' , _dirname , true ) ?. data . version ?? ''
149
145
150
146
// set in bin/vite.js
151
147
const filter = process . env . VITE_DEBUG_FILTER
@@ -1036,8 +1032,6 @@ export function getHash(text: Buffer | string, length = 8): string {
1036
1032
return h . padEnd ( length , '_' )
1037
1033
}
1038
1034
1039
- const _dirname = path . dirname ( fileURLToPath ( import . meta. url ) )
1040
-
1041
1035
export const requireResolveFromRootWithFallback = (
1042
1036
root : string ,
1043
1037
id : string ,
You can’t perform that action at this time.
0 commit comments