wao 0.35.0 → 0.35.1
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.
- package/cjs/hyperbeam.js +2 -2
- package/cjs/workspace/package.json +1 -1
- package/esm/hyperbeam.js +2 -2
- package/esm/workspace/package.json +1 -1
- package/package.json +1 -1
package/cjs/hyperbeam.js
CHANGED
|
@@ -133,7 +133,7 @@ var HyperBEAM = exports["default"] = /*#__PURE__*/function () {
|
|
|
133
133
|
key: "shell",
|
|
134
134
|
value: function shell() {
|
|
135
135
|
var _this = this;
|
|
136
|
-
var _as = this.as.length === 0 ? [] : ["as", this.as.join(",
|
|
136
|
+
var _as = this.as.length === 0 ? [] : ["as", this.as.join(",")];
|
|
137
137
|
this._shell = (0, _child_process.spawn)("rebar3", [].concat(_as, ["shell", "--eval", this.genEval({
|
|
138
138
|
gateway: this.gateway,
|
|
139
139
|
wallet: this.wallet
|
|
@@ -186,7 +186,7 @@ var HyperBEAM = exports["default"] = /*#__PURE__*/function () {
|
|
|
186
186
|
_iterator3.f();
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
|
-
var _as = _this2.as.length === 0 ? [] : ["as", _this2.as.join(",
|
|
189
|
+
var _as = _this2.as.length === 0 ? [] : ["as", _this2.as.join(",")];
|
|
190
190
|
var _test = Array.isArray(test) ? test.join("+") : test;
|
|
191
191
|
var _module = "";
|
|
192
192
|
if (Array.isArray(module)) {
|
package/esm/hyperbeam.js
CHANGED
|
@@ -81,7 +81,7 @@ export default class HyperBEAM {
|
|
|
81
81
|
if (shell) this.shell()
|
|
82
82
|
}
|
|
83
83
|
shell() {
|
|
84
|
-
const _as = this.as.length === 0 ? [] : ["as", this.as.join(",
|
|
84
|
+
const _as = this.as.length === 0 ? [] : ["as", this.as.join(",")]
|
|
85
85
|
this._shell = spawn(
|
|
86
86
|
"rebar3",
|
|
87
87
|
[
|
|
@@ -121,7 +121,7 @@ export default class HyperBEAM {
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
|
-
const _as = this.as.length === 0 ? [] : ["as", this.as.join(",
|
|
124
|
+
const _as = this.as.length === 0 ? [] : ["as", this.as.join(",")]
|
|
125
125
|
const _test = Array.isArray(test) ? test.join("+") : test
|
|
126
126
|
let _module = ""
|
|
127
127
|
|