rman 0.27.4 → 0.28.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.
@@ -29,4 +29,4 @@ BuildCommand.commandName = 'build';
29
29
  });
30
30
  }
31
31
  BuildCommand.initCli = initCli;
32
- })(BuildCommand = exports.BuildCommand || (exports.BuildCommand = {}));
32
+ })(BuildCommand || (exports.BuildCommand = BuildCommand = {}));
@@ -35,4 +35,4 @@ ChangedCommand.commandName = 'changed';
35
35
  });
36
36
  }
37
37
  ChangedCommand.initCli = initCli;
38
- })(ChangedCommand = exports.ChangedCommand || (exports.ChangedCommand = {}));
38
+ })(ChangedCommand || (exports.ChangedCommand = ChangedCommand = {}));
@@ -75,4 +75,4 @@ CleanInstallCommand.commandName = 'ci';
75
75
  });
76
76
  }
77
77
  CleanInstallCommand.initCli = initCli;
78
- })(CleanInstallCommand = exports.CleanInstallCommand || (exports.CleanInstallCommand = {}));
78
+ })(CleanInstallCommand || (exports.CleanInstallCommand = CleanInstallCommand = {}));
@@ -75,4 +75,4 @@ ExecuteCommand.commandName = 'exec';
75
75
  });
76
76
  }
77
77
  ExecuteCommand.initCli = initCli;
78
- })(ExecuteCommand = exports.ExecuteCommand || (exports.ExecuteCommand = {}));
78
+ })(ExecuteCommand || (exports.ExecuteCommand = ExecuteCommand = {}));
@@ -63,4 +63,4 @@ InfoCommand.commandName = 'info';
63
63
  });
64
64
  }
65
65
  InfoCommand.initCli = initCli;
66
- })(InfoCommand = exports.InfoCommand || (exports.InfoCommand = {}));
66
+ })(InfoCommand || (exports.InfoCommand = InfoCommand = {}));
@@ -139,4 +139,4 @@ ListCommand.commandName = 'list';
139
139
  });
140
140
  }
141
141
  ListCommand.initCli = initCli;
142
- })(ListCommand = exports.ListCommand || (exports.ListCommand = {}));
142
+ })(ListCommand || (exports.ListCommand = ListCommand = {}));
@@ -67,4 +67,4 @@ exports.MultiTaskCommand = MultiTaskCommand;
67
67
  default: true
68
68
  }
69
69
  };
70
- })(MultiTaskCommand = exports.MultiTaskCommand || (exports.MultiTaskCommand = {}));
70
+ })(MultiTaskCommand || (exports.MultiTaskCommand = MultiTaskCommand = {}));
@@ -113,4 +113,4 @@ PublishCommand.commandName = 'publish';
113
113
  });
114
114
  }
115
115
  PublishCommand.initCli = initCli;
116
- })(PublishCommand = exports.PublishCommand || (exports.PublishCommand = {}));
116
+ })(PublishCommand || (exports.PublishCommand = PublishCommand = {}));
@@ -126,4 +126,4 @@ RunCommand.commandName = 'run';
126
126
  });
127
127
  }
128
128
  RunCommand.initCli = initCli;
129
- })(RunCommand = exports.RunCommand || (exports.RunCommand = {}));
129
+ })(RunCommand || (exports.RunCommand = RunCommand = {}));
@@ -197,4 +197,4 @@ VersionCommand.commandName = 'version';
197
197
  });
198
198
  }
199
199
  VersionCommand.initCli = initCli;
200
- })(VersionCommand = exports.VersionCommand || (exports.VersionCommand = {}));
200
+ })(VersionCommand || (exports.VersionCommand = VersionCommand = {}));
@@ -121,4 +121,4 @@ exports.Command = Command;
121
121
  return result;
122
122
  }
123
123
  Command.composeOptions = composeOptions;
124
- })(Command = exports.Command || (exports.Command = {}));
124
+ })(Command || (exports.Command = Command = {}));
package/cjs/utils/exec.js CHANGED
@@ -1,11 +1,8 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.exec = void 0;
7
4
  const child_process_1 = require("child_process");
8
- const signal_exit_1 = __importDefault(require("signal-exit"));
5
+ const signal_exit_1 = require("signal-exit");
9
6
  const npm_run_path_js_1 = require("./npm-run-path.js");
10
7
  const runningChildren = new Map();
11
8
  async function exec(command, options) {
@@ -106,7 +103,7 @@ async function exec(command, options) {
106
103
  });
107
104
  }
108
105
  exports.exec = exec;
109
- (0, signal_exit_1.default)(() => {
106
+ (0, signal_exit_1.onExit)(() => {
110
107
  runningChildren.forEach((child) => {
111
108
  child.kill();
112
109
  });
package/esm/utils/exec.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { spawn } from 'child_process';
2
- import onExit from 'signal-exit';
2
+ import { onExit } from 'signal-exit';
3
3
  import { npmRunPathEnv } from './npm-run-path.js';
4
4
  const runningChildren = new Map();
5
5
  export async function exec(command, options) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rman",
3
3
  "description": "Monorepo repository manager",
4
- "version": "0.27.4",
4
+ "version": "0.28.1",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
7
7
  "contributors": [
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/panates/rman.git"
12
+ "url": "git+https://github.com/panates/rman.git"
13
13
  },
14
14
  "keywords": [
15
15
  "javascript",
@@ -34,58 +34,58 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@netlify/parse-npm-script": "^0.1.2",
37
- "chalk": "^5.2.0",
37
+ "chalk": "^5.3.0",
38
38
  "easy-table": "^1.2.0",
39
- "envinfo": "^7.8.1",
40
- "fast-glob": "^3.2.12",
41
- "figures": "^5.0.0",
42
- "ini": "^3.0.1",
39
+ "envinfo": "^7.13.0",
40
+ "fast-glob": "^3.3.2",
41
+ "figures": "^6.1.0",
42
+ "ini": "^4.1.3",
43
43
  "is-ci": "^3.0.1",
44
44
  "js-yaml": "^4.1.0",
45
45
  "npmlog": "^7.0.1",
46
46
  "path-key": "^4.0.0",
47
- "power-tasks": "^1.6.4",
48
- "putil-merge": "^3.10.1",
47
+ "power-tasks": "^1.7.3",
48
+ "putil-merge": "^3.12.1",
49
49
  "putil-varhelpers": "^1.6.5",
50
- "semver": "^7.3.8",
51
- "signal-exit": "^3.0.7",
52
- "strict-typed-events": "^2.3.1",
50
+ "semver": "^7.6.2",
51
+ "signal-exit": "^4.1.0",
52
+ "strict-typed-events": "^2.3.3",
53
53
  "strip-color": "^0.1.0",
54
- "yargs": "^17.6.2"
54
+ "yargs": "^17.7.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@babel/eslint-parser": "^7.19.1",
58
- "@types/envinfo": "^7.8.1",
59
- "@types/ini": "^1.3.31",
60
- "@types/is-ci": "^3.0.0",
61
- "@types/jest": "^29.2.6",
62
- "@types/js-yaml": "^4.0.5",
63
- "@types/node": "^18.11.18",
64
- "@types/npmlog": "^4.1.4",
65
- "@types/semver": "^7.3.13",
66
- "@types/signal-exit": "^3.0.1",
67
- "@types/strip-color": "^0.1.0",
68
- "@types/yargs": "^17.0.20",
69
- "@typescript-eslint/eslint-plugin": "^5.49.0",
70
- "@typescript-eslint/parser": "^5.49.0",
71
- "eslint": "^8.32.0",
57
+ "@babel/eslint-parser": "^7.24.7",
58
+ "@types/envinfo": "^7.8.4",
59
+ "@types/ini": "^4.1.0",
60
+ "@types/is-ci": "^3.0.4",
61
+ "@types/jest": "^29.5.12",
62
+ "@types/js-yaml": "^4.0.9",
63
+ "@types/node": "^20.14.2",
64
+ "@types/npmlog": "^7.0.0",
65
+ "@types/semver": "^7.5.8",
66
+ "@types/signal-exit": "^3.0.4",
67
+ "@types/strip-color": "^0.1.2",
68
+ "@types/yargs": "^17.0.32",
69
+ "@typescript-eslint/eslint-plugin": "^7.12.0",
70
+ "@typescript-eslint/parser": "^7.12.0",
71
+ "eslint": "^8.57.0",
72
72
  "eslint-config-google": "^0.14.0",
73
- "eslint-plugin-import": "^2.27.5",
74
- "eslint-plugin-security": "^1.6.0",
75
- "eslint-plugin-simple-import-sort": "^9.0.0",
76
- "eslint-plugin-unused-imports": "^2.0.0",
77
- "jest": "^29.3.1",
78
- "prettier": "^2.8.3",
73
+ "eslint-plugin-import-x": "^0.5.1",
74
+ "eslint-plugin-security": "^3.0.0",
75
+ "eslint-plugin-simple-import-sort": "^12.1.0",
76
+ "eslint-plugin-unused-imports": "^3.2.0",
77
+ "jest": "^29.7.0",
78
+ "prettier": "^3.3.1",
79
79
  "ts-cleanup": "^0.2.6",
80
- "ts-gems": "^2.3.0",
81
- "ts-jest": "^29.0.5",
82
- "ts-loader": "^9.4.2",
83
- "ts-node": "^10.9.1",
84
- "tsconfig-paths": "^4.1.2",
85
- "typescript": "^4.9.4"
80
+ "ts-gems": "^3.4.0",
81
+ "ts-jest": "^29.1.4",
82
+ "ts-loader": "^9.5.1",
83
+ "ts-node": "^10.9.2",
84
+ "tsconfig-paths": "^4.2.0",
85
+ "typescript": "^5.4.5"
86
86
  },
87
87
  "engines": {
88
- "node": ">=14.0",
88
+ "node": ">=16.0",
89
89
  "npm": ">=7.0.0"
90
90
  },
91
91
  "files": [