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 348348- yuleicul
349349- zeromask1337
350350- zheng-chuang
351+ - maximevtush
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const resolveFileUrl = (
1313
1414 if ( ! isWithinRoot ) {
1515 // 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`
1717 // https://vitejs.dev/config/server-options.html#server-fs-allow
1818 return path . posix . join ( "/@fs" , vite . normalizePath ( filePath ) ) ;
1919 }
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export const createReadableStreamFromReadable = (
7373
7474class StreamPump {
7575 public highWaterMark : number ;
76- public accumalatedSize : number ;
76+ public accumulatedSize : number ;
7777 private stream : Stream & {
7878 readableHighWaterMark ?: number ;
7979 readable ?: boolean ;
@@ -95,7 +95,7 @@ class StreamPump {
9595 this . highWaterMark =
9696 stream . readableHighWaterMark ||
9797 new Stream . Readable ( ) . readableHighWaterMark ;
98- this . accumalatedSize = 0 ;
98+ this . accumulatedSize = 0 ;
9999 this . stream = stream ;
100100 this . enqueue = this . enqueue . bind ( this ) ;
101101 this . error = this . error . bind ( this ) ;
You can’t perform that action at this time.
0 commit comments