Skip to content

Commit

Permalink
fix: support Uint8Array in ipfs.object.get (#82)
Browse files Browse the repository at this point in the history
* chore: disable generation with reason why
* fix: support Uint8Array in ipfs.object.get

BREAKING CHANGE: expects ipfs.object.get to return Uint8Array
  • Loading branch information
lidel committed Mar 29, 2021
1 parent b8724c2 commit 5b85b6d
Show file tree
Hide file tree
Showing 5 changed files with 7,911 additions and 8,649 deletions.
6 changes: 5 additions & 1 deletion bin/generate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
/* eslint no-console: "off" */
/* eslint no-console: "off", no-unreachable: "off" */
'use strict'

const Gauge = require('gauge')
Expand All @@ -11,6 +11,10 @@ function handleNoApi () {
process.exit(1)
}

// TODO
console.log('Unable to build: src/generate/index.js needs to be refactored to use the latest JS API. PRs welcome: https://github.com/ipfs-shipyard/ipfs-geoip')
process.exit(1)

// -- CLI interaction
ipfs.id()
.then((id) => {
Expand Down

0 comments on commit 5b85b6d

Please sign in to comment.