exupery-core-async 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -131,7 +131,7 @@ var up;
131
131
  up.sequence = (steps) => {
132
132
  return {
133
133
  __start: (on_success, on_error) => {
134
- const length = _ei.array_literal(steps).__get_length();
134
+ const length = _ei.array_literal(steps).__get_number_of_elements();
135
135
  const runStep = (index) => {
136
136
  if (index >= length) {
137
137
  on_success();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-async",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "async types for Exupery",
@@ -22,6 +22,6 @@
22
22
  "url": "git+https://github.com/corno/exupery-core.git"
23
23
  },
24
24
  "dependencies": {
25
- "exupery-core-internals": "^0.2.0"
25
+ "exupery-core-internals": "^0.3.0"
26
26
  }
27
27
  }