-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: upgrade datastores for node 10 #168
Changes from 6 commits
10ccd58
1454dda
ee53f78
2f51846
2c3b0cf
fa9c7a6
c0bba88
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
javascript() | ||
javascript(['nodejs_versions': ['8.11.1','9.2.0','10.0.0']]) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
"browser": { | ||
"rimraf": false, | ||
"datastore-fs": "datastore-level", | ||
"leveldown": "level-js", | ||
"./src/lock.js": "./src/lock-memory.js", | ||
"./src/default-options.js": "./src/default-options-browser.js" | ||
}, | ||
|
@@ -59,14 +58,12 @@ | |
"big.js": "^5.0.3", | ||
"cids": "~0.5.3", | ||
"datastore-core": "~0.4.0", | ||
"datastore-fs": "~0.4.2", | ||
"datastore-level": "~0.7.0", | ||
"datastore-fs": "github:ipfs/js-datastore-fs#fix/node10", | ||
"datastore-level": "github:ipfs/js-datastore-level#fix/node10", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note to self: needs ipfs/js-datastore-level#7 |
||
"debug": "^3.1.0", | ||
"interface-datastore": "~0.4.2", | ||
"ipfs-block": "~0.7.1", | ||
"level-js": "timkuijsten/level.js#idbunwrapper", | ||
"leveldown": "^1.7.2", | ||
"lock-me": "^1.0.3", | ||
"lock-me": "github:jacobheun/lock-me#fix/windows", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we get this PR up so that @dignifiedquire can review and merge? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We've already gotten that merged and released with lock-me 1.0.4.
|
||
"lodash.get": "^4.4.2", | ||
"lodash.has": "^4.5.2", | ||
"lodash.set": "^4.3.2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
'use strict' | ||
|
||
exports.ERR_REPO_NOT_INITIALIZED = 'ERR_REPO_NOT_INITIALIZED' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has been merged and released, the dep can be updated.