stacks 0.52.1 → 0.52.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.
Files changed (72) hide show
  1. package/core/actions/package.json +1 -1
  2. package/core/actions/src/bump.ts +1 -1
  3. package/core/actions/src/helpers/utils.ts +0 -2
  4. package/core/ai/package.json +1 -1
  5. package/core/alias/package.json +1 -1
  6. package/core/analytics/package.json +1 -1
  7. package/core/arrays/package.json +1 -1
  8. package/core/auth/package.json +1 -1
  9. package/core/buddy/package.json +1 -1
  10. package/core/buddy/src/commands/build.ts +8 -11
  11. package/core/buddy/src/commands/changelog.ts +7 -6
  12. package/core/buddy/src/commands/deploy.ts +4 -5
  13. package/core/buddy/src/commands/inspire.ts +4 -5
  14. package/core/buddy/src/commands/key.ts +4 -5
  15. package/core/buddy/src/commands/lint.ts +8 -10
  16. package/core/buddy/src/commands/make.ts +4 -5
  17. package/core/buddy/src/commands/migrate.ts +4 -5
  18. package/core/buddy/src/commands/onboarding.ts +4 -5
  19. package/core/buddy/src/commands/setting.ts +4 -5
  20. package/core/buddy/src/commands/test.ts +4 -9
  21. package/core/buddy/src/commands/upgrade.ts +8 -11
  22. package/core/build/package.json +1 -1
  23. package/core/cache/package.json +1 -1
  24. package/core/chat/package.json +1 -1
  25. package/core/cli/package.json +1 -1
  26. package/core/cli/src/helpers.ts +12 -5
  27. package/core/cloud/package.json +1 -1
  28. package/core/collections/package.json +1 -1
  29. package/core/config/package.json +1 -1
  30. package/core/database/package.json +1 -1
  31. package/core/datetime/package.json +1 -1
  32. package/core/desktop/package.json +1 -1
  33. package/core/development/package.json +1 -1
  34. package/core/docs/package.json +1 -1
  35. package/core/domains/package.json +1 -1
  36. package/core/email/package.json +1 -1
  37. package/core/error-handling/package.json +1 -1
  38. package/core/events/package.json +1 -1
  39. package/core/faker/package.json +1 -1
  40. package/core/git/package.json +1 -1
  41. package/core/health/package.json +1 -1
  42. package/core/lint/package.json +1 -1
  43. package/core/logging/package.json +1 -1
  44. package/core/modules/package.json +1 -1
  45. package/core/notifications/package.json +1 -1
  46. package/core/objects/package.json +1 -1
  47. package/core/orm/package.json +1 -1
  48. package/core/pages/package.json +1 -1
  49. package/core/path/package.json +1 -1
  50. package/core/payments/package.json +1 -1
  51. package/core/push/package.json +1 -1
  52. package/core/query-builder/package.json +1 -1
  53. package/core/queue/package.json +1 -1
  54. package/core/realtime/package.json +1 -1
  55. package/core/router/package.json +1 -1
  56. package/core/scheduler/package.json +1 -1
  57. package/core/search-engine/package.json +1 -1
  58. package/core/security/package.json +1 -1
  59. package/core/server/package.json +1 -1
  60. package/core/signals/package.json +1 -1
  61. package/core/slug/package.json +1 -1
  62. package/core/sms/package.json +1 -1
  63. package/core/storage/package.json +1 -1
  64. package/core/strings/package.json +1 -1
  65. package/core/testing/package.json +1 -1
  66. package/core/tinker/package.json +1 -1
  67. package/core/types/package.json +1 -1
  68. package/core/types/src/cli.ts +18 -1
  69. package/core/ui/package.json +1 -1
  70. package/core/utils/package.json +1 -1
  71. package/core/validation/package.json +1 -1
  72. package/package.json +91 -91
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks actions.",
7
7
  "author": "Chris Breuer",
@@ -2,6 +2,6 @@ import { runCommand } from '@stacksjs/cli'
2
2
  import { frameworkPath } from '@stacksjs/path'
3
3
 
4
4
  await runCommand(
5
- 'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "pnpm buddy changelog" --all',
5
+ 'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "buddy changelog --quiet" --all',
6
6
  { verbose: true, cwd: frameworkPath(), shell: true },
7
7
  )
@@ -37,8 +37,6 @@ export async function runAction(action: string, options?: ActionOptions): Promis
37
37
  // we need to parse options here because they need to bw passed to the action
38
38
  const opts = parseOptions(options)
39
39
  const cmd = `npx tsx ${actionsPath(`${action}.ts ${opts}`)}`
40
- // eslint-disable-next-line no-console
41
- console.log('cmd', cmd)
42
40
 
43
41
  if (options?.verbose)
44
42
  log.debug('running command:', italic(cmd))
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ai",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Stacks Artificial Intelligence.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/alias",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks aliases.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/analytics",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Stacks Analytics. Privacy-friendly.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/arrays",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks array utilities.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/auth",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "A more simplistic way to authenticate.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Meet Buddy. The Stacks runtime.",
7
7
  "author": "Chris Breuer",
@@ -110,12 +110,10 @@ async function build(buddy: CLI) {
110
110
  const startTime = await intro('buddy build:core')
111
111
  const result = await runAction(Action.BuildCore, options)
112
112
 
113
- console.log('result', result)
114
-
115
- // if (result.isErr()) {
116
- // log.error('Failed to build the Stacks core.', result.error)
117
- // process.exit()
118
- // }
113
+ if (result.isErr()) {
114
+ log.error('Failed to build the Stacks core.', result.error as Error)
115
+ process.exit()
116
+ }
119
117
 
120
118
  outro('Stacks core built successfully', { startTime, useSeconds: true })
121
119
  })
@@ -127,12 +125,11 @@ async function build(buddy: CLI) {
127
125
  .action(async (options: BuildOptions) => {
128
126
  const startTime = await intro('buddy build:stacks')
129
127
  const result = await runAction(Action.BuildStacks, options)
130
- console.log('result', result)
131
128
 
132
- // if (result.isErr()) {
133
- // log.error('Failed to build Stacks.', result.error)
134
- // process.exit()
135
- // }
129
+ if (result.isErr()) {
130
+ log.error('Failed to build Stacks.', result.error as Error)
131
+ process.exit()
132
+ }
136
133
 
137
134
  outro('Stacks built successfully', { startTime, useSeconds: true })
138
135
  })
@@ -6,23 +6,24 @@ import { Action, ExitCode } from '@stacksjs/types'
6
6
  async function changelog(buddy: CLI) {
7
7
  const descriptions = {
8
8
  changelog: 'Create a CHANGELOG.md file',
9
+ quiet: 'Minimal output',
9
10
  verbose: 'Enable verbose output',
10
11
  }
11
12
 
12
13
  buddy
13
14
  .command('changelog', descriptions.changelog)
15
+ .option('--quiet', descriptions.quiet, { default: false })
14
16
  .option('--verbose', descriptions.verbose, { default: false })
15
17
  .action(async (options: FreshOptions) => {
16
18
  const perf = await intro('buddy changelog')
17
19
  const result = await runAction(Action.Changelog, options)
18
- console.log('result', result)
19
20
 
20
- // if (result.isErr()) {
21
- // outro('While running the changelog command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
22
- // process.exit()
23
- // }
21
+ if (result.isErr()) {
22
+ outro('While running the changelog command, there was an issue', { ...options, startTime: perf, useSeconds: true, isError: true }, result.error as Error)
23
+ process.exit()
24
+ }
24
25
 
25
- outro('Generated the CHANGELOG.md file.', { startTime: perf, useSeconds: true })
26
+ outro('Generated the CHANGELOG.md file', { ...options, startTime: perf, useSeconds: true, type: 'info' })
26
27
  process.exit(ExitCode.Success)
27
28
  })
28
29
  }
@@ -15,12 +15,11 @@ async function deploy(buddy: CLI) {
15
15
  .action(async (options: DeployOptions) => {
16
16
  const perf = await intro('buddy deploy')
17
17
  const result = await runAction(Action.Deploy, options)
18
- console.log('result', result)
19
18
 
20
- // if (result.isErr()) {
21
- // outro('While running the `buddy deploy`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
22
- // process.exit()
23
- // }
19
+ if (result.isErr()) {
20
+ outro('While running the `buddy deploy`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
21
+ process.exit()
22
+ }
24
23
 
25
24
  outro('Deployment succeeded.', { startTime: perf, useSeconds: true })
26
25
  process.exit(ExitCode.Success)
@@ -10,12 +10,11 @@ async function inspire(buddy: CLI) {
10
10
  .action(async () => {
11
11
  const perf = await intro('buddy inspire')
12
12
  const result = await runAction(Action.Inspire)
13
- console.log('result', result)
14
13
 
15
- // if (result.isErr()) {
16
- // outro('While running the inspire command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
17
- // process.exit()
18
- // }
14
+ if (result.isErr()) {
15
+ outro('While running the inspire command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
16
+ process.exit()
17
+ }
19
18
 
20
19
  outro('Your quote is: ...', { startTime: perf, useSeconds: true })
21
20
  process.exit(ExitCode.Success)
@@ -15,12 +15,11 @@ async function key(buddy: CLI) {
15
15
  .action(async (options: KeyOptions) => {
16
16
  const startTime = await intro('buddy key:generate')
17
17
  const result = await runAction(Action.KeyGenerate, options)
18
- console.log('result', result)
19
18
 
20
- // if (result.isErr()) {
21
- // log.error('Failed to set random application key.', result.error)
22
- // process.exit()
23
- // }
19
+ if (result.isErr()) {
20
+ log.error('Failed to set random application key.', result.error as Error)
21
+ process.exit()
22
+ }
24
23
 
25
24
  outro('Set random application key.', { startTime })
26
25
  })
@@ -17,12 +17,11 @@ async function lint(buddy: CLI) {
17
17
  .action(async (options: LintOptions) => {
18
18
  const perf = await intro('buddy lint')
19
19
  const result = await runAction(Action.Lint, { ...options, showSpinner: true, spinnerText: 'Linting...' })
20
- console.log('result', result)
21
20
 
22
- // if (result.isErr()) {
23
- // outro('While running `buddy lint`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
24
- // process.exit()
25
- // }
21
+ if (result.isErr()) {
22
+ outro('While running `buddy lint`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
23
+ process.exit()
24
+ }
26
25
 
27
26
  outro('Linted your project.', { startTime: perf, useSeconds: true })
28
27
  })
@@ -33,12 +32,11 @@ async function lint(buddy: CLI) {
33
32
  .action(async (options: LintOptions) => {
34
33
  log.info('Fixing lint errors...')
35
34
  const result = await runAction(Action.LintFix, { ...options, showSpinner: true, spinnerText: 'Linting...' })
36
- console.log('result', result)
37
35
 
38
- // if (result.isErr()) {
39
- // log.error('There was an error lint fixing your code.', result.error)
40
- // process.exit()
41
- // }
36
+ if (result.isErr()) {
37
+ log.error('There was an error lint fixing your code.', result.error as Error)
38
+ process.exit()
39
+ }
42
40
 
43
41
  log.success('Fixed lint errors.')
44
42
  })
@@ -185,12 +185,11 @@ async function make(buddy: CLI) {
185
185
  }
186
186
 
187
187
  const result = await createNotification(options)
188
- console.log('result', result)
189
188
 
190
- // if (!result) {
191
- // outro('While running the make:notification command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
192
- // process.exit()
193
- // }
189
+ if (!result) {
190
+ outro('While running the make:notification command, there was an issue', { startTime: perf, useSeconds: true, isError: true })
191
+ process.exit()
192
+ }
194
193
 
195
194
  outro(`Created your ${italic(name)} notification.`, { startTime: perf, useSeconds: true })
196
195
  process.exit(ExitCode.Success)
@@ -15,12 +15,11 @@ async function migrate(buddy: CLI) {
15
15
  .action(async (options: FreshOptions) => {
16
16
  const perf = await intro('buddy migrate')
17
17
  const result = await runAction(Action.Migrate, { ...options, showSpinner: true, spinnerText: 'Migrating...' })
18
- console.log('result', result)
19
18
 
20
- // if (result.isErr()) {
21
- // outro('While running the migrate command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
22
- // process.exit()
23
- // }
19
+ if (result.isErr()) {
20
+ outro('While running the migrate command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
21
+ process.exit()
22
+ }
24
23
 
25
24
  const APP_ENV = process.env.APP_ENV || 'local'
26
25
 
@@ -15,12 +15,11 @@ async function onboarding(buddy: CLI) {
15
15
  .action(async () => {
16
16
  const startTime = await intro('buddy page:onboarding')
17
17
  const result = await runAction(Action.GenerateOnboarding)
18
- console.log('result', result)
19
18
 
20
- // if (result.isErr()) {
21
- // log.error('Something went wrong when generating', result.error)
22
- // process.exit()
23
- // }
19
+ if (result.isErr()) {
20
+ log.error('Something went wrong when generating', result.error as Error)
21
+ process.exit()
22
+ }
24
23
 
25
24
  outro('Pages generated successfully', { startTime })
26
25
  })
@@ -15,12 +15,11 @@ async function setting(buddy: CLI) {
15
15
  .action(async () => {
16
16
  const startTime = await intro('buddy page:setting')
17
17
  const result = await runAction(Action.GenerateSettings)
18
- console.log('result', result)
19
18
 
20
- // if (result.isErr()) {
21
- // log.error('Something went wrong when generating', result.error)
22
- // process.exit()
23
- // }
19
+ if (result.isErr()) {
20
+ log.error('Something went wrong when generating', result.error as Error)
21
+ process.exit()
22
+ }
24
23
 
25
24
  outro('Pages generated successfully', { startTime })
26
25
  })
@@ -23,12 +23,11 @@ async function test(buddy: CLI) {
23
23
  .action(async (options: TestOptions) => {
24
24
  const perf = await intro('buddy test')
25
25
  const result = await runAction(Action.Test, { ...options, cwd: projectPath() })
26
- console.log('result', result)
27
26
 
28
- // if (result.isErr()) {
29
- // outro('While running `buddy test`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
30
- // process.exit()
31
- // }
27
+ if (result.isErr()) {
28
+ outro('While running `buddy test`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
29
+ process.exit()
30
+ }
32
31
 
33
32
  outro('Finished running tests', { startTime: perf, useSeconds: true })
34
33
  })
@@ -39,7 +38,6 @@ async function test(buddy: CLI) {
39
38
  .action(async (options: TestOptions) => {
40
39
  const perf = await intro('buddy test:unit')
41
40
  const result = await runAction(Action.TestUnit, { ...options, verbose: true, cwd: projectPath() })
42
- console.log('result', result)
43
41
 
44
42
  if (result.isErr()) {
45
43
  outro('While running `buddy test:unit`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
@@ -76,7 +74,6 @@ async function test(buddy: CLI) {
76
74
  .action(async (options: TestOptions) => {
77
75
  const perf = await intro('buddy test:ui')
78
76
  const result = await runAction(Action.TestUi, { ...options, verbose: true, cwd: projectPath() })
79
- console.log('result', result)
80
77
 
81
78
  if (result.isErr()) {
82
79
  outro('While running `buddy test:ui`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
@@ -93,7 +90,6 @@ async function test(buddy: CLI) {
93
90
  .action(async (options: TestOptions) => {
94
91
  const perf = await intro('buddy test:types')
95
92
  const result = await runAction(Action.Typecheck, { ...options, verbose: true, cwd: projectPath() })
96
- console.log('result', result)
97
93
 
98
94
  if (result.isErr()) {
99
95
  outro('While running `buddy test:types`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
@@ -108,7 +104,6 @@ async function test(buddy: CLI) {
108
104
  .action(async (options: TestOptions) => {
109
105
  const perf = await intro('buddy test:coverage')
110
106
  const result = await runAction(Action.TestCoverage, { ...options, cwd: projectPath(), verbose: true })
111
- console.log('result', result)
112
107
 
113
108
  if (result.isErr()) {
114
109
  outro('While running `buddy test:coverage`, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
@@ -56,12 +56,11 @@ async function upgrade(buddy: CLI) {
56
56
  }
57
57
 
58
58
  const result = await runAction(Action.Upgrade, { ...options, shell: true })
59
- console.log('result', result)
60
59
 
61
- // if (result.isErr()) {
62
- // outro('While running the buddy:upgrade command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error)
63
- // process.exit()
64
- // }
60
+ if (result.isErr()) {
61
+ outro('While running the buddy:upgrade command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
62
+ process.exit()
63
+ }
65
64
 
66
65
  outro('Upgrade complete.', { startTime: perf, useSeconds: true })
67
66
  process.exit()
@@ -100,12 +99,11 @@ async function upgrade(buddy: CLI) {
100
99
 
101
100
  const perf = await intro('buddy upgrade:package-manager')
102
101
  const result = await runAction(Action.UpgradePackageManager, options)
103
- console.log('result', result, perf)
104
102
 
105
- // if (response.isErr()) {
106
- // outro('While running the buddy upgrade:package-manager command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, response.error)
107
- // process.exit()
108
- // }
103
+ if (result.isErr()) {
104
+ outro('While running the buddy upgrade:package-manager command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
105
+ process.exit()
106
+ }
109
107
 
110
108
  process.exit(ExitCode.Success)
111
109
  })
@@ -116,7 +114,6 @@ async function upgrade(buddy: CLI) {
116
114
  .action(async (options: UpgradeOptions) => {
117
115
  const perf = await intro('buddy upgrade:node')
118
116
  const result = await runAction(Action.UpgradeNode, options)
119
- console.log('result', result, perf)
120
117
 
121
118
  if (result.isErr()) {
122
119
  outro('While running the buddy upgrade:node command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error) // FIXME: should not have to cast
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/build",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks framework build tools and configurations.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cache",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks way of caching.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/chat",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks Chat Integration. Easy sending of messages for chat services",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cli",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The simple way to create beautiful CLIs.",
7
7
  "author": "Chris Breuer",
@@ -9,12 +9,16 @@ import { bgCyan, bold, cyan, dim, green, italic, red } from './utilities'
9
9
  */
10
10
  export async function intro(command: string, options?: IntroOptions) {
11
11
  const version = await frameworkVersion()
12
- console.log()
13
- console.log(cyan(bold('Stacks CLI')) + dim(` v${version}`))
14
- console.log()
15
- log.info(`Preparing to run the ${bgCyan(italic(bold(` ${command} `)))} command.`)
16
12
 
17
- if (options?.showPerformance === false)
13
+ if (options?.quiet === false) {
14
+ console.log()
15
+ console.log(cyan(bold('Stacks CLI')) + dim(` v${version}`))
16
+ console.log()
17
+ }
18
+
19
+ log.info(`Preparing to run the ${bgCyan(italic(bold(` ${command} `)))} command`)
20
+
21
+ if (options?.showPerformance === false || options?.quiet)
18
22
  return
19
23
 
20
24
  return performance.now()
@@ -43,6 +47,9 @@ export function outro(text: string, options: OutroOptions, error?: Error | strin
43
47
  time = Math.round(time * 100) / 100 // https://stackoverflow.com/a/11832950/7811162
44
48
  }
45
49
 
50
+ if (options.quiet === false)
51
+ return
52
+
46
53
  if (options.isError)
47
54
  log.error(red(`in ${time}${options.useSeconds ? 's' : 'ms'}`))
48
55
  else
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cloud",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks cloud/serverless integration & implementation.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/collections",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks collections.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/config",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "private": true,
6
6
  "packageManager": "pnpm@8.5.1",
7
7
  "description": "The Stacks config helper methods.",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/database",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks database integration.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/datetime",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks datetime helpers.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/desktop",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks Desktop engine.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/development",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks development dependencies.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/docs",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks way to document.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/domains",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Easily manage your domains.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/email",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/error-handling",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Type safe error handling.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/events",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Functional event emitting.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/faker",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "Faker functions.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/git",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks git utilities & conventions.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/health",
3
3
  "type": "module",
4
- "version": "0.52.1",
4
+ "version": "0.52.3",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks Health services.",
7
7
  "author": "Chris Breuer",