Skip to content

Commit cf0cc13

Browse files
committed
chore: wip
1 parent 9af4b21 commit cf0cc13

25 files changed

+5045
-5358
lines changed

storage/framework/core/buddy/src/commands/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { CLI, DeployOptions } from '@stacksjs/types'
2+
import { $ } from 'bun'
23
import process from 'node:process'
34
import { runAction } from '@stacksjs/actions'
45
import { intro, italic, log, outro, prompts, runCommand } from '@stacksjs/cli'
@@ -7,7 +8,6 @@ import { addDomain, hasUserDomainBeenAddedToCloud } from '@stacksjs/dns'
78
import { Action } from '@stacksjs/enums'
89
import { path as p } from '@stacksjs/path'
910
import { ExitCode } from '@stacksjs/types'
10-
import { $ } from 'bun'
1111

1212
export function deploy(buddy: CLI): void {
1313
const descriptions = {

storage/framework/core/components/modal/src/components/Types.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async function handleCopyCode() {
162162
</button>
163163
</div>
164164

165-
<div class="code-block group relative">
165+
<div class="group code-block relative">
166166
<!-- <Highlight
167167
language="javascript"
168168
class-name="rounded-md text-xs"

storage/framework/core/error-handling/tests/error-handling.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { italic } from '@stacksjs/cli'
21
import { afterAll, beforeAll, describe, expect, it, mock, spyOn } from 'bun:test'
2+
import { italic } from '@stacksjs/cli'
33
import fs from 'fs-extra'
44
import { ErrorHandler, handleError } from '../src/handler'
55
import { rescue } from '../src/utils'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type ModelNames = 'Project' | 'SubscriberEmail' | 'AccessToken' | 'Team' | 'Subscriber' | 'Deployment' | 'Release' | 'User' | 'Post'
1+
export type ModelNames = 'Project' | 'SubscriberEmail' | 'AccessToken' | 'Team' | 'Subscriber' | 'Deployment' | 'Release' | 'User' | 'Post'

storage/framework/orm/routes.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import { route } from '@stacksjs/router'
22

3-
43
route.get('users', 'UserIndexOrmAction').middleware(['Api'])
54

65
route.post('users', 'UserStoreOrmAction').middleware(['Api'])
76

87
route.get('users/{id}', 'UserShowOrmAction').middleware(['Api'])
9-

0 commit comments

Comments
 (0)