rman 0.10.0 → 0.11.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.
- package/bin/rman.js +1 -1
- package/cjs/commands/run-command.js +1 -3
- package/cjs/debug.js +1 -1
- package/esm/commands/run-command.mjs +1 -3
- package/esm/debug.mjs +1 -1
- package/package.json +1 -1
package/bin/rman.js
CHANGED
|
@@ -129,9 +129,7 @@ RunCommand.commandName = 'run';
|
|
|
129
129
|
if (args.script && runCfg && typeof runCfg === 'object') {
|
|
130
130
|
['parallel', 'bail', 'progress'].forEach(n => {
|
|
131
131
|
if (typeof runCfg[n] === 'string') {
|
|
132
|
-
|
|
133
|
-
args[n] = true;
|
|
134
|
-
}
|
|
132
|
+
runCfg[n] = runCfg[n].split(/\s*,\s*/).includes(args.script);
|
|
135
133
|
}
|
|
136
134
|
});
|
|
137
135
|
}
|
package/cjs/debug.js
CHANGED
|
@@ -122,9 +122,7 @@ RunCommand.commandName = 'run';
|
|
|
122
122
|
if (args.script && runCfg && typeof runCfg === 'object') {
|
|
123
123
|
['parallel', 'bail', 'progress'].forEach(n => {
|
|
124
124
|
if (typeof runCfg[n] === 'string') {
|
|
125
|
-
|
|
126
|
-
args[n] = true;
|
|
127
|
-
}
|
|
125
|
+
runCfg[n] = runCfg[n].split(/\s*,\s*/).includes(args.script);
|
|
128
126
|
}
|
|
129
127
|
});
|
|
130
128
|
}
|
package/esm/debug.mjs
CHANGED