Skip to content

Commit c441f14

Browse files
up dep
1 parent ae0f892 commit c441f14

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

lib/heappop.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/heapreplace.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"url": "https://github.com/aureooms/js-heapq/issues"
2424
},
2525
"dependencies": {
26-
"aureooms-js-collections": "^2.0.0",
2726
"aureooms-js-compare": "^1.4.5",
28-
"aureooms-js-itertools": "^3.1.0"
27+
"aureooms-js-error": "^3.0.0",
28+
"aureooms-js-itertools": "^3.1.1"
2929
},
3030
"devDependencies": {
3131
"ava": "^0.16.0",
@@ -35,7 +35,7 @@
3535
"codeclimate-test-reporter": "^0.4.0",
3636
"coveralls": "^2.11.15",
3737
"esdoc": "^0.4.8",
38-
"nyc": "^8.4.0"
38+
"nyc": "^9.0.1"
3939
},
4040
"homepage": "https://aureooms.github.io/js-heapq",
4141
"keywords": [

src/heappop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IndexError } from 'aureooms-js-collections' ;
1+
import { IndexError } from 'aureooms-js-error' ;
22
import { siftdown } from './core' ;
33

44
export default function heappop ( heap ) {

src/heapreplace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IndexError } from 'aureooms-js-collections' ;
1+
import { IndexError } from 'aureooms-js-error' ;
22
import { siftdown } from './core' ;
33

44
export default function heapreplace ( heap , item ) {

test/src/heapq.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import test from 'ava' ;
22

33
import { increasing } from "aureooms-js-compare" ;
44
import { list } from "aureooms-js-itertools" ;
5-
import { IndexError } from 'aureooms-js-collections' ;
5+
import { IndexError } from 'aureooms-js-error' ;
66

77
import heapq from '../../src' ;
88

0 commit comments

Comments
 (0)