Skip to content

Commit 4284a6e

Browse files
committed
upgrade dev deps & minor updates
1 parent 3e82ac6 commit 4284a6e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
"flatqueue": "^2.0.3"
4242
},
4343
"devDependencies": {
44-
"@rollup/plugin-node-resolve": "^15.0.1",
45-
"eslint": "^8.36.0",
44+
"@rollup/plugin-node-resolve": "^15.0.2",
45+
"eslint": "^8.38.0",
4646
"eslint-config-mourner": "^3.0.0",
4747
"rbush": "^3.0.1",
4848
"rbush-knn": "^3.0.1",
49-
"rollup": "^3.20.0"
49+
"rollup": "^3.20.2"
5050
}
5151
}

test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ test('returns index of newly-added rectangle', () => {
171171

172172
test('creates an index using SharedArrayBuffer', () => {
173173
const index = createIndexSharedArrayBuffer();
174-
assert(index.data instanceof global.SharedArrayBuffer);
174+
assert(index.data instanceof SharedArrayBuffer);
175175
});
176176

177-
test('reconstructs an index from shared array buffer', () => {
177+
test('reconstructs an index from SharedArrayBuffer', () => {
178178
const index = createIndexSharedArrayBuffer();
179179
const index2 = Flatbush.from(index.data);
180180

0 commit comments

Comments
 (0)