Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
chore: Rename package from ipld-resolver to ipld
Browse files Browse the repository at this point in the history
BREAKING CHANGE: All packages that depend on `ipld-resolver`
need to change their dependency.

Within your package that depends on `ipld-resolver` do:

    npm uninstall ipld-resolver
    npm intall ipld

Then search for all imports of `ipld-resolver` and change from

    const IPLDResolver = require('ipld-resolver')

to

    const Ipld = require('ipld')

Closes #116.
  • Loading branch information
vmx committed Feb 26, 2018
1 parent 06d2583 commit 8b82a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ipld-resolver",
"name": "ipld",
"version": "0.14.1",
"description": "IPLD Resolver Implementation in JavaScript",
"main": "src/index.js",
Expand Down

0 comments on commit 8b82a49

Please sign in to comment.