Skip to content

Commit e1e7530

Browse files
committed
Version 0.3.31
PR-URL: #384
1 parent a73187c commit e1e7530

File tree

8 files changed

+343
-329
lines changed

8 files changed

+343
-329
lines changed

lib/adapters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
// Convert source to callback-last contract
66
// source - promise or regular synchronous function

lib/array.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
const map = (
66
// Asynchronous map (iterate parallel)

lib/collector.class.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
const UNEXPECTED_KEY = 'Metasync: unexpected key: ';
66
const COLLECT_TIMEOUT = 'Metasync: Collector timed out';

lib/collector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
const UNEXPECTED_KEY = 'Metasync: unexpected key: ';
66
const COLLECT_TIMEOUT = 'Metasync: Collector timed out';

lib/collector.prototype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
function Collector() {}
66

lib/control.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const common = require('metarhia-common');
3+
const common = require('@metarhia/common');
44

55
const { each } = require('./array');
66

package-lock.json

Lines changed: 333 additions & 319 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metasync",
3-
"version": "0.3.30",
3+
"version": "0.3.31",
44
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
55
"description": "Asynchronous Programming Library",
66
"license": "MIT",
@@ -46,15 +46,15 @@
4646
"node": ">=6.0.0"
4747
},
4848
"dependencies": {
49-
"metarhia-common": "^0.0.37"
49+
"@metarhia/common": "^1.0.0"
5050
},
5151
"devDependencies": {
5252
"babel-cli": "^6.26.0",
5353
"babel-preset-env": "^1.7.0",
54-
"eslint": "^5.8.0",
54+
"eslint": "^5.9.0",
5555
"eslint-config-metarhia": "^6.0.0",
5656
"eslint-plugin-import": "^2.14.0",
5757
"metaschema": "^0.0.26",
58-
"metatests": "^0.2.3"
58+
"metatests": "^0.3.0"
5959
}
6060
}

0 commit comments

Comments
 (0)