@stacksjs/types 0.65.0 → 0.66.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/dist/cli.d.ts +6 -0
- package/package.json +2 -2
- package/src/cli.ts +8 -0
package/dist/cli.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.66.0",
|
|
5
5
|
"description": "The Stacks framework types.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": [
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@mdit-vue/plugin-frontmatter": "^2.1.3",
|
|
50
50
|
"@mdit-vue/types": "^2.1.0",
|
|
51
51
|
"@rollup/pluginutils": "^5.1.2",
|
|
52
|
-
"@stacksjs/validation": "0.
|
|
52
|
+
"@stacksjs/validation": "0.65.1",
|
|
53
53
|
"@types/aws4": "^1.11.6",
|
|
54
54
|
"@types/bun": "^1.1.11",
|
|
55
55
|
"@types/crypto-js": "^4.2.2",
|
package/src/cli.ts
CHANGED
|
@@ -141,6 +141,14 @@ export interface CliOptions {
|
|
|
141
141
|
*/
|
|
142
142
|
cwd?: string
|
|
143
143
|
|
|
144
|
+
/**
|
|
145
|
+
* **stdio**
|
|
146
|
+
*
|
|
147
|
+
* The `stdio` option lets you configure the standard I/O of the spawned process.
|
|
148
|
+
*
|
|
149
|
+
*/
|
|
150
|
+
// stdio?: [SpawnOptions.Writable, SpawnOptions.Readable, SpawnOptions.Readable]
|
|
151
|
+
|
|
144
152
|
/**
|
|
145
153
|
* @default 'pipe'
|
|
146
154
|
*/
|