Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbandi committed Jun 1, 2017
1 parent 6e59df0 commit e031f2c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 19 deletions.
4 changes: 1 addition & 3 deletions src/api-request.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use strict';

import Builder from './utils/Builder';
import { API_VERSION } from './utils/env';

const DEFAULT_HOST = `api.imgur.com/${API_VERSION}`,
const DEFAULT_HOST = `api.imgur.com/${API_VERSION}`;
const DEFAULT_SCHEME = 'https';

export default new Builder()
Expand Down
2 changes: 0 additions & 2 deletions src/auth-request.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import Builder from './utils/Builder';

const DEFAULT_HOST = 'api.imgur.com/oauth2/authorize';
Expand Down
13 changes: 0 additions & 13 deletions src/giraffy-image.js
Original file line number Diff line number Diff line change
@@ -1,13 +0,0 @@
/**
* giraffy
*
* Copyright © 2016 joelbandi. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/

import Builder from './utils/Builder';
import { get, put, patch, del, post } from './utils/Http';


2 changes: 1 addition & 1 deletion test/Request.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { expect } from 'chai';
import Request from '../src/Request';
import Request from '../src/utils/Request';
describe('Request', () => {


Expand Down

0 comments on commit e031f2c

Please sign in to comment.