File tree 2 files changed +14
-5
lines changed
2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,18 @@ describe('injectQuery', () => {
18
18
'C:/User/Vite/Project?direct'
19
19
)
20
20
} )
21
+
22
+ test ( 'absolute file path' , ( ) => {
23
+ expect ( injectQuery ( 'C:\\test-file.vue' , 'direct' ) ) . toEqual (
24
+ 'C:/test-file.vue?direct'
25
+ )
26
+ } )
27
+
28
+ test ( 'absolute file path with parameters' , ( ) => {
29
+ expect (
30
+ injectQuery ( 'C:\\test-file.vue?vue&type=template&lang.js' , 'direct' )
31
+ ) . toEqual ( 'C:/test-file.vue?direct&vue&type=template&lang.js' )
32
+ } )
21
33
}
22
34
23
35
test ( 'relative path' , ( ) => {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import os from 'node:os'
3
3
import path from 'node:path'
4
4
import { createHash } from 'node:crypto'
5
5
import { promisify } from 'node:util'
6
- import { URL , URLSearchParams , pathToFileURL } from 'node:url'
6
+ import { URL , URLSearchParams } from 'node:url'
7
7
import { builtinModules , createRequire } from 'node:module'
8
8
import { promises as dns } from 'node:dns'
9
9
import { performance } from 'node:perf_hooks'
@@ -326,10 +326,7 @@ export function removeDirectQuery(url: string): string {
326
326
export function injectQuery ( url : string , queryToInject : string ) : string {
327
327
// encode percents for consistent behavior with pathToFileURL
328
328
// see #2614 for details
329
- let resolvedUrl = new URL ( url . replace ( / % / g, '%25' ) , 'relative:///' )
330
- if ( resolvedUrl . protocol !== 'relative:' ) {
331
- resolvedUrl = pathToFileURL ( url )
332
- }
329
+ const resolvedUrl = new URL ( url . replace ( / % / g, '%25' ) , 'relative:///' )
333
330
const { search, hash } = resolvedUrl
334
331
let pathname = cleanUrl ( url )
335
332
pathname = isWindows ? slash ( pathname ) : pathname
You can’t perform that action at this time.
0 commit comments