Skip to content

Commit

Permalink
fix(data-fetcher): gmod/gff stream issue (#957)
Browse files Browse the repository at this point in the history
fix: stream issue
  • Loading branch information
etowahadams authored Aug 2, 2023
1 parent ab394ac commit c698785
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"quick-lru": "^6.1.1",
"rbush": "^3.0.1",
"react-grid-layout": "^1.2.5",
"stream-browserify": "^3.0.0",
"threads": "^1.6.4",
"uuid": "^8.3.2"
},
Expand Down
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ const alias = {
"@gosling-lang/dummy-track": path.resolve(__dirname, "./src/dummy-track/index.ts"),
"@data-fetchers": path.resolve(__dirname, "./src/data-fetchers/index.ts"),
zlib: path.resolve(__dirname, './src/alias/zlib.ts'),
uuid: path.resolve(__dirname, './node_modules/uuid/dist/esm-browser/index.js')
uuid: path.resolve(__dirname, './node_modules/uuid/dist/esm-browser/index.js'),
stream: path.resolve(__dirname, './node_modules/stream-browserify')
};

const skipExt = new Set(['@gmod/bbi', 'uuid']);
Expand Down

0 comments on commit c698785

Please sign in to comment.