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

Adding Gateway , based on harshjv PR #966

Merged
merged 4 commits into from
Aug 29, 2017
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 gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const gulp = require('gulp')
const parallel = require('async/parallel')
const series = require('async/series')
const createTempRepo = require('./test/utils/create-repo-nodejs.js')
const HTTPAPI = require('./src/http-api')
const HTTPAPI = require('./src/http')
const leftPad = require('left-pad')

let nodes = []
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"test:unit:node": "gulp test:node",
"test:unit:node:core": "TEST=core npm run test:unit:node",
"test:unit:node:http": "TEST=http npm run test:unit:node",
"test:unit:node:gateway": "TEST=gateway npm run test:unit:node",
"test:unit:node:cli": "TEST=cli npm run test:unit:node",
"test:unit:browser": "gulp test:browser",
"test:interop": "npm run test:interop:node",
Expand Down Expand Up @@ -94,6 +95,8 @@
"boom": "^5.2.0",
"cids": "^0.5.1",
"debug": "^3.0.0",
"file-type": "^6.1.0",
"filesize": "^3.5.10",
"fsm-event": "^2.1.0",
"glob": "^7.1.2",
"hapi": "^16.5.2",
Expand Down Expand Up @@ -128,6 +131,7 @@
"lodash.values": "^4.3.0",
"mime-types": "^2.1.13",
"mafmt": "^2.1.8",
"mime-types": "^2.1.16",
"mkdirp": "^0.5.1",
"multiaddr": "^2.3.0",
"multihashes": "~0.4.5",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/daemon.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const HttpAPI = require('../../http-api')
const HttpAPI = require('../../http')
const utils = require('../utils')
const print = utils.print

Expand Down
86 changes: 0 additions & 86 deletions src/http-api/gateway/resolver.js

This file was deleted.

Loading