Skip to content

Commit

Permalink
fix: added buffer dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bergos authored and RubenVerborgh committed Jun 22, 2024
1 parent 4622e54 commit b0ab548
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 191 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
'import/no-amd': 2,
'import/no-commonjs': 2,
'import/no-import-module-exports': 2,
'import/no-nodejs-modules': 2,
'import/no-nodejs-modules': 0,
'import/unambiguous': 2,
'import/default': 2,
'import/named': 2,
Expand Down
235 changes: 45 additions & 190 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"browser"
],
"dependencies": {
"buffer": "^6.0.3",
"queue-microtask": "^1.1.2",
"readable-stream": "^4.0.0"
},
Expand Down
1 change: 1 addition & 0 deletions src/N3Lexer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// **N3Lexer** tokenizes N3 documents.
import { Buffer } from 'buffer';
import queueMicrotask from 'queue-microtask';
import namespaces from './IRIs';

Expand Down

0 comments on commit b0ab548

Please sign in to comment.