Skip to content

Commit

Permalink
rename to hypercore storage
Browse files Browse the repository at this point in the history
  • Loading branch information
chm-diederichs committed Oct 14, 2024
1 parent e14587c commit be6ddcc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { EventEmitter } = require('events')
const isOptions = require('is-options')
const hypercoreCrypto = require('hypercore-crypto')
const CoreStorage = require('hypercore-on-the-rocks')
const CoreStorage = require('hypercore-storage')
const c = require('compact-encoding')
const b4a = require('b4a')
const NoiseSecretStream = require('@hyperswarm/secret-stream')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"hypercore-crypto": "^3.2.1",
"hypercore-errors": "^1.2.0",
"hypercore-id-encoding": "^1.2.0",
"hypercore-on-the-rocks": "latest",
"hypercore-storage": "latest",
"is-options": "^1.0.1",
"protomux": "^3.5.0",
"quickbit-universal": "^2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/bitfield.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const test = require('brittle')
const b4a = require('b4a')
const createTempDir = require('test-tmp')
const CoreStorage = require('hypercore-on-the-rocks')
const CoreStorage = require('hypercore-storage')
const Bitfield = require('../lib/bitfield')
const BitInterlude = require('../lib/bit-interlude')

Expand Down
2 changes: 1 addition & 1 deletion test/core.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const test = require('brittle')
const b4a = require('b4a')
const createTempDir = require('test-tmp')
const CoreStorage = require('hypercore-on-the-rocks')
const CoreStorage = require('hypercore-storage')
const Core = require('../lib/core')

test('core - append', async function (t) {
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Hypercore = require('../../')
const createTempDir = require('test-tmp')
const CoreStorage = require('hypercore-on-the-rocks')
const CoreStorage = require('hypercore-storage')
const safetyCatch = require('safety-catch')

exports.create = async function (t, ...args) {
Expand Down
2 changes: 1 addition & 1 deletion test/merkle-tree.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const test = require('brittle')
const b4a = require('b4a')
const createTempDir = require('test-tmp')
const CoreStorage = require('hypercore-on-the-rocks')
const CoreStorage = require('hypercore-storage')
const Tree = require('../lib/merkle-tree')

test('nodes', async function (t) {
Expand Down

0 comments on commit be6ddcc

Please sign in to comment.