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.
- package/cjs/commands/build-command.js +1 -1
- package/cjs/commands/changed-command.js +1 -1
- package/cjs/commands/ci-command.js +1 -1
- package/cjs/commands/execute-command.js +1 -1
- package/cjs/commands/info-command.js +1 -1
- package/cjs/commands/list-command.js +1 -1
- package/cjs/commands/multi-task-command.js +1 -1
- package/cjs/commands/publish-command.js +1 -1
- package/cjs/commands/run-command.js +1 -1
- package/cjs/commands/version-command.js +1 -1
- package/cjs/core/command.js +1 -1
- package/cjs/utils/exec.js +2 -5
- package/esm/utils/exec.js +1 -1
- package/package.json +41 -41
|
@@ -75,4 +75,4 @@ CleanInstallCommand.commandName = 'ci';
|
|
|
75
75
|
});
|
|
76
76
|
}
|
|
77
77
|
CleanInstallCommand.initCli = initCli;
|
|
78
|
-
})(CleanInstallCommand
|
|
78
|
+
})(CleanInstallCommand || (exports.CleanInstallCommand = CleanInstallCommand = {}));
|
package/cjs/core/command.js
CHANGED
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 =
|
|
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.
|
|
106
|
+
(0, signal_exit_1.onExit)(() => {
|
|
110
107
|
runningChildren.forEach((child) => {
|
|
111
108
|
child.kill();
|
|
112
109
|
});
|
package/esm/utils/exec.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rman",
|
|
3
3
|
"description": "Monorepo repository manager",
|
|
4
|
-
"version": "0.
|
|
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.
|
|
37
|
+
"chalk": "^5.3.0",
|
|
38
38
|
"easy-table": "^1.2.0",
|
|
39
|
-
"envinfo": "^7.
|
|
40
|
-
"fast-glob": "^3.2
|
|
41
|
-
"figures": "^
|
|
42
|
-
"ini": "^
|
|
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.
|
|
48
|
-
"putil-merge": "^3.
|
|
47
|
+
"power-tasks": "^1.7.3",
|
|
48
|
+
"putil-merge": "^3.12.1",
|
|
49
49
|
"putil-varhelpers": "^1.6.5",
|
|
50
|
-
"semver": "^7.
|
|
51
|
-
"signal-exit": "^
|
|
52
|
-
"strict-typed-events": "^2.3.
|
|
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.
|
|
54
|
+
"yargs": "^17.7.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@babel/eslint-parser": "^7.
|
|
58
|
-
"@types/envinfo": "^7.8.
|
|
59
|
-
"@types/ini": "^1.
|
|
60
|
-
"@types/is-ci": "^3.0.
|
|
61
|
-
"@types/jest": "^29.
|
|
62
|
-
"@types/js-yaml": "^4.0.
|
|
63
|
-
"@types/node": "^
|
|
64
|
-
"@types/npmlog": "^
|
|
65
|
-
"@types/semver": "^7.
|
|
66
|
-
"@types/signal-exit": "^3.0.
|
|
67
|
-
"@types/strip-color": "^0.1.
|
|
68
|
-
"@types/yargs": "^17.0.
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
70
|
-
"@typescript-eslint/parser": "^
|
|
71
|
-
"eslint": "^8.
|
|
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": "^
|
|
74
|
-
"eslint-plugin-security": "^
|
|
75
|
-
"eslint-plugin-simple-import-sort": "^
|
|
76
|
-
"eslint-plugin-unused-imports": "^2.0
|
|
77
|
-
"jest": "^29.
|
|
78
|
-
"prettier": "^
|
|
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": "^
|
|
81
|
-
"ts-jest": "^29.
|
|
82
|
-
"ts-loader": "^9.
|
|
83
|
-
"ts-node": "^10.9.
|
|
84
|
-
"tsconfig-paths": "^4.
|
|
85
|
-
"typescript": "^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": ">=
|
|
88
|
+
"node": ">=16.0",
|
|
89
89
|
"npm": ">=7.0.0"
|
|
90
90
|
},
|
|
91
91
|
"files": [
|