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 CHANGED
@@ -2,4 +2,4 @@
2
2
  import {runCli} from '../esm/cli.mjs';
3
3
 
4
4
  // eslint-disable-next-line
5
- runCli().catch();
5
+ runCli().catch(() => 0);
@@ -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
- if (runCfg[n].split(/\s*,\s*/).includes(args.script)) {
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
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const cli_1 = require("./cli");
4
- (0, cli_1.runCli)({ cwd: '/Users/ehanoglu/Yazilim/js/emr' })
4
+ (0, cli_1.runCli)({ cwd: '/Users/ehanoglu/Yazilim/js/sqb' })
5
5
  .catch(() => 0);
@@ -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
- if (runCfg[n].split(/\s*,\s*/).includes(args.script)) {
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
@@ -1,3 +1,3 @@
1
1
  import { runCli } from './cli.mjs';
2
- runCli({ cwd: '/Users/ehanoglu/Yazilim/js/emr' })
2
+ runCli({ cwd: '/Users/ehanoglu/Yazilim/js/sqb' })
3
3
  .catch(() => 0);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rman",
3
3
  "description": "Monorepo repository manager",
4
- "version": "0.10.0",
4
+ "version": "0.11.0",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
7
7
  "contributors": [