Skip to content

Commit 753b7e3

Browse files
committed
chore: release v0.66.0
1 parent 2df8424 commit 753b7e3

File tree

106 files changed

+176
-160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+176
-160
lines changed

storage/framework/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stacks-api",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"scripts": {
66
"build": "bun build.ts",
77
"dev": "bun --hot run dev.ts",

storage/framework/cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stacks-cloud",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "The Stacks cloud/serverless integration & implementation.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/actions",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "The Stacks actions.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/actions/src/helpers/utils.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Action as ActionType } from '@stacksjs/actions'
22
import type { Err, Ok, Result } from '@stacksjs/error-handling'
3-
import type { ActionOptions, CommandError, Readable, Subprocess, Writable } from '@stacksjs/types'
3+
import type { ActionOptions, CliOptions, CommandError, Readable, Subprocess, Writable } from '@stacksjs/types'
44
import process from 'node:process'
55
import { buddyOptions, runCommand, runCommands } from '@stacksjs/cli'
66
import { err } from '@stacksjs/error-handling'
@@ -20,6 +20,8 @@ type Action = ActionPath | ActionName | string
2020
* @returns The result of the command.
2121
*/
2222
export async function runAction(action: Action, options?: ActionOptions): Promise<Result<Subprocess, CommandError>> {
23+
log.debug('runAction:', action, options)
24+
2325
// check if action is a file anywhere in ./app/Actions/**/*.ts
2426
// if it is, return and await the action
2527
const glob = new Bun.Glob('**/*.{ts,js}')
@@ -50,13 +52,15 @@ export async function runAction(action: Action, options?: ActionOptions): Promis
5052
const opts = buddyOptions()
5153
const path = p.relativeActionsPath(`src/${action}.ts`)
5254
const cmd = `bun ${path} ${opts}`.trimEnd()
53-
const optionsWithCwd = {
55+
56+
const optionsWithCwd: CliOptions = {
5457
cwd: options?.cwd || p.projectPath(),
58+
stdio: [options?.stdin ?? 'inherit', 'pipe', 'pipe'],
5559
...options,
5660
}
5761

58-
log.debug('runAction:', cmd)
59-
log.debug('action options:', optionsWithCwd)
62+
log.debug('action cmd:', cmd)
63+
log.debug('optionsWithCwd:', optionsWithCwd)
6064

6165
return await runCommand(cmd, optionsWithCwd)
6266
}

storage/framework/core/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/ai",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "Stacks Artificial Intelligence.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/alias/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/alias",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "The Stacks aliases.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/analytics",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "Stacks Analytics. Privacy-friendly.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/api",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "The Stacks array utilities.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/arrays/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/arrays",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "The Stacks array utilities.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

storage/framework/core/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/auth",
33
"type": "module",
4-
"version": "0.65.1",
4+
"version": "0.66.0",
55
"description": "A more simplistic way to authenticate.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

0 commit comments

Comments
 (0)