@stacksjs/actions 0.49.1 → 0.49.2
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/dist/dev.mjs +0 -1
- package/dist/helpers/utils.d.ts +1 -1
- package/package.json +11 -11
package/dist/dev.mjs
CHANGED
package/dist/helpers/utils.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export type ActionResult = Promise<Result<CommandResult<string>, Error> | Result
|
|
|
8
8
|
* @param options The options to pass to the command.
|
|
9
9
|
* @returns The result of the command.
|
|
10
10
|
*/
|
|
11
|
-
export declare function runAction(action: string, options?: CliOptions): Promise<Result<CommandResult<string>, Error> | Err<CommandResult<string>, string>>;
|
|
11
|
+
export declare function runAction(action: string, options?: CliOptions): Promise<Result<CommandResult<string>, Error> | Result<CommandResult<string>, Error>[] | Err<CommandResult<string>, string>>;
|
|
12
12
|
/**
|
|
13
13
|
* Run Actions the Stacks way.
|
|
14
14
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/actions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.49.
|
|
4
|
+
"version": "0.49.2",
|
|
5
5
|
"packageManager": "pnpm@7.25.0",
|
|
6
6
|
"description": "The Stacks actions.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -42,23 +42,23 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"markdown-it": "^13.0.1",
|
|
44
44
|
"vue-component-meta": "^1.0.24",
|
|
45
|
-
"@stacksjs/cli": "0.49.
|
|
46
|
-
"@stacksjs/config": "0.49.
|
|
47
|
-
"@stacksjs/
|
|
48
|
-
"@stacksjs/
|
|
49
|
-
"@stacksjs/security": "0.49.
|
|
50
|
-
"@stacksjs/
|
|
51
|
-
"@stacksjs/
|
|
52
|
-
"@stacksjs/utils": "0.49.
|
|
45
|
+
"@stacksjs/cli": "0.49.2",
|
|
46
|
+
"@stacksjs/config": "0.49.2",
|
|
47
|
+
"@stacksjs/path": "0.49.2",
|
|
48
|
+
"@stacksjs/logging": "0.49.2",
|
|
49
|
+
"@stacksjs/security": "0.49.2",
|
|
50
|
+
"@stacksjs/types": "0.49.2",
|
|
51
|
+
"@stacksjs/storage": "0.49.2",
|
|
52
|
+
"@stacksjs/utils": "0.49.2"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"esno": "^0.16.3",
|
|
56
|
-
"@stacksjs/strings": "0.49.
|
|
56
|
+
"@stacksjs/strings": "0.49.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"mkdist": "^1.1.0",
|
|
60
60
|
"typescript": "^4.9.4",
|
|
61
|
-
"@stacksjs/testing": "0.49.
|
|
61
|
+
"@stacksjs/testing": "0.49.2"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "mkdist -d",
|