File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 348
348
- yuleicul
349
349
- zeromask1337
350
350
- zheng-chuang
351
+ - maximevtush
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const resolveFileUrl = (
13
13
14
14
if ( ! isWithinRoot ) {
15
15
// Vite will prevent serving files outside of the workspace
16
- // unless user explictly opts in with `server.fs.allow`
16
+ // unless user explicitly opts in with `server.fs.allow`
17
17
// https://vitejs.dev/config/server-options.html#server-fs-allow
18
18
return path . posix . join ( "/@fs" , vite . normalizePath ( filePath ) ) ;
19
19
}
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export const createReadableStreamFromReadable = (
73
73
74
74
class StreamPump {
75
75
public highWaterMark : number ;
76
- public accumalatedSize : number ;
76
+ public accumulatedSize : number ;
77
77
private stream : Stream & {
78
78
readableHighWaterMark ?: number ;
79
79
readable ?: boolean ;
@@ -95,7 +95,7 @@ class StreamPump {
95
95
this . highWaterMark =
96
96
stream . readableHighWaterMark ||
97
97
new Stream . Readable ( ) . readableHighWaterMark ;
98
- this . accumalatedSize = 0 ;
98
+ this . accumulatedSize = 0 ;
99
99
this . stream = stream ;
100
100
this . enqueue = this . enqueue . bind ( this ) ;
101
101
this . error = this . error . bind ( this ) ;
You can’t perform that action at this time.
0 commit comments