Skip to content

Commit 5902854

Browse files
authored
chore(angular): remove unnecessary browserify stream dep (#1983)
1 parent 42f8b93 commit 5902854

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

frameworks/angular-slickgrid/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"browser": "src/main.ts",
2020
"polyfills": ["zone.js"],
2121
"tsConfig": "tsconfig.app.json",
22-
"allowedCommonJsDependencies": ["@fnando/sparkline", "stream"],
22+
"allowedCommonJsDependencies": ["@fnando/sparkline"],
2323
"assets": [
2424
"src/assets",
2525
"src/favicon.ico",

frameworks/angular-slickgrid/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"module": "es2022",
1919
"baseUrl": "./",
2020
"paths": {
21-
"stream": ["./node_modules/stream-browserify"],
2221
"sortablejs/modular/sortable.core.esm.js": ["./types/sortablejs.d.ts"]
2322
},
2423
"strict": true

packages/common/src/filters/autocompleterFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class AutocompleterFilter<T extends AutocompleteItem = any> implements Fi
200200

201201
if (collectionAsync && !this.columnFilter.collection) {
202202
// only read the collectionAsync once (on the 1st load),
203-
// we do this because Http Fetch will throw an error saying body was already read and is streaming is locked
203+
// we do this because Http Fetch will throw an error saying body was already read and its streaming is locked
204204
collectionOutput = renderCollectionOptionsAsync(
205205
collectionAsync,
206206
this.columnDef,

0 commit comments

Comments
 (0)