@rsdk/cli.common 6.0.0-next.1 → 6.0.0-next.3
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
export interface IRunnable {
|
|
5
5
|
/**
|
|
6
6
|
* Runs the command with the provided arguments.
|
|
7
|
-
* @param args - Arguments
|
|
7
|
+
* @param args - Arguments of the command
|
|
8
8
|
* @returns Promise that resolves when command execution is complete
|
|
9
9
|
*/
|
|
10
10
|
run(...args: any[]): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/cli.common",
|
|
3
|
-
"version": "6.0.0-next.
|
|
3
|
+
"version": "6.0.0-next.3",
|
|
4
4
|
"description": "Shared types and helpers for build work with cli",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
],
|
|
16
16
|
"license": "Apache License 2.0",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@rsdk/common": "6.0.0-next.
|
|
19
|
-
"@rsdk/common.node": "6.0.0-next.
|
|
20
|
-
"@rsdk/logging": "6.0.0-next.
|
|
18
|
+
"@rsdk/common": "6.0.0-next.3",
|
|
19
|
+
"@rsdk/common.node": "6.0.0-next.3",
|
|
20
|
+
"@rsdk/logging": "6.0.0-next.3",
|
|
21
21
|
"@sinclair/typebox": "^0.34.9",
|
|
22
22
|
"commander": "^12.1.0",
|
|
23
23
|
"dotenv": "^16.3.1",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"reflect-metadata": "^0.1.12 || ^0.2.0"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "e9a3e6741c196ecd2d6d1db6a6d9b6611b7d39c4"
|
|
32
32
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
export interface IRunnable {
|
|
5
5
|
/**
|
|
6
6
|
* Runs the command with the provided arguments.
|
|
7
|
-
* @param args - Arguments
|
|
7
|
+
* @param args - Arguments of the command
|
|
8
8
|
* @returns Promise that resolves when command execution is complete
|
|
9
9
|
*/
|
|
10
10
|
run(...args: any[]): Promise<void>;
|