Skip to content

Commit 943ede0

Browse files
committed
chore: wip
1 parent 163be62 commit 943ede0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

storage/framework/core/actions/src/make.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { MakeOptions } from '@stacksjs/types'
22
import process from 'node:process'
33
import { italic } from '@stacksjs/cli'
4+
import { handleError } from '@stacksjs/error-handling'
45
import { log } from '@stacksjs/logging'
56
import { frameworkPath, path as p, resolve } from '@stacksjs/path'
67
import { createFolder, doesFolderExist, writeTextFile } from '@stacksjs/storage'
7-
import { handleError } from '@stacksjs/error-handling'
88

99
export async function invoke(options: MakeOptions): Promise<void> {
1010
if (options.component)

storage/framework/core/ai/tests/ai.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { afterEach, beforeEach, describe, expect, it, mock, spyOn } from 'bun:test'
12
import {
23
BedrockClient,
34
CreateModelCustomizationJobCommand,
@@ -7,7 +8,6 @@ import {
78
import { log } from '@stacksjs/cli'
89
import { ai } from '@stacksjs/config'
910
import { mockClient } from 'aws-sdk-client-mock'
10-
import { afterEach, beforeEach, describe, expect, it, mock, spyOn } from 'bun:test'
1111
import {
1212
createModelCustomizationJob,
1313
getModelCustomizationJob,

storage/framework/core/alias/tests/alias.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { describe, expect, it } from 'bun:test'
12
import fs from 'node:fs'
23
import path from 'node:path'
3-
import { describe, expect, it } from 'bun:test'
44
import { alias } from '../src/index'
55

66
describe('@stacksjs/alias', () => {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { CLI, CliOptions } from '@stacksjs/types'
1+
import type { CLI } from '@stacksjs/types'
2+
import { $ } from 'bun'
23
import process from 'node:process'
34
import { log } from '@stacksjs/logging'
45
import { projectPath } from '@stacksjs/path'
5-
import { $ } from 'bun'
66

77
export function outdated(buddy: CLI): void {
88
const descriptions = {

0 commit comments

Comments
 (0)