Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Fixed issues with some required modules #108

Merged
merged 1 commit into from
Apr 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"chai": "^3.4.1",
"expose-loader": "^0.7.1",
"form-data": "^1.0.0-rc3",
"fs-blob-store": "^5.2.1",
"idb-plus-blob-store": "^1.0.0",
"istanbul": "^0.4.1",
"json-loader": "^0.5.4",
Expand Down Expand Up @@ -79,6 +78,7 @@
"boom": "^3.1.1",
"bs58": "^3.0.0",
"debug": "^2.2.0",
"fs-blob-store": "^5.2.1",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch!

"hapi": "^12.0.0",
"ipfs-api": "github:ipfs/js-ipfs-api#1fd9749",
"ipfs-blocks": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/config/replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const debug = require('debug')
const path = require('path')
const log = debug('cli:config')
log.error = debug('cli:config:error')
const utils = require('utils')
const utils = require('../../utils')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how was this not failing before? Could you add a test too @JGAntunes ? Thank you!

//cc @xicombd

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No idea, I'll try to review the config commands later today, I think they're not working with the daemon running either 😟

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@diasdavid sure thing, will look at it later today also, so maybe I can help you out @xicombd.


module.exports = Command.extend({
desc: 'Replaces the config with <file>',
Expand Down