Skip to content
Open
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"author": "Aleksey Tsvetkov <aleksey.dmitrich@gmail.com> (https://github.com/acvetkov)",
"license": "ISC",
"dependencies": {
"@hypnosphi/q-io": "^1.13.1",
Copy link
Author

Choose a reason for hiding this comment

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

diff with original package: kriskowal/q-io#177

"bluebird": "^3.0.6",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"lodash": "^4.17.20",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"q-io": "^1.13.1"
"q": "^1.4.1"
},
"devDependencies": {
"babel": "^5.8.34",
Expand Down
2 changes: 1 addition & 1 deletion src/storage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @overview
*/

import fs from 'q-io/fs';
import fs from '@hypnosphi/q-io/fs';
import path from 'path';
import mkdirp from 'mkdirp';
import Promise from 'bluebird';
Expand Down
2 changes: 1 addition & 1 deletion src/token/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @overview
*/

import http from 'q-io/http';
import http from '@hypnosphi/q-io/http';
import debug from 'debug';

import config from '../config/index';
Expand Down
2 changes: 1 addition & 1 deletion src/webstore/items.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @overview
*/

import http from 'q-io/http';
import http from '@hypnosphi/q-io/http';
import debug from 'debug';

import config from '../config/index';
Expand Down
2 changes: 1 addition & 1 deletion test/specs/file-storage.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import FileStorage from '../../src/storage/index';
import fs from 'q-io/fs';
import fs from '@hypnosphi/q-io/fs';
import path from 'path';

const NEW_FILE = path.resolve(__dirname, '../temp-directory/data.json');
Expand Down