Skip to content

Commit 0d3bc75

Browse files
committed
chore: wip
1 parent cf0cc13 commit 0d3bc75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/framework/core/actions/src/lint/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { log } from '@stacksjs/cli'
22

3-
log.info('Ensuring Code Style...')
3+
log.info('Checking Code Style...')
44

55
// TODO: somehow, we currently cannot trigger bunx --bun using $`` syntax
66
// $.cwd(projectPath())

storage/framework/core/orm/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@ export async function generateModelFiles(modelStringFile?: string, options?: Gen
18321832
// we run this in background in background, because we simply need to lint:fix the auto-generated code
18331833
// the reason we run it in background is because we don't care whether it fails or not, given there
18341834
// is a chance that the codebase has lint issues unrelating to our auto-generated code
1835-
const process = Bun.spawn(['bunx', 'eslint', '.', '--fix'], {
1835+
const process = Bun.spawn(['bunx', '--bun', 'eslint', '.', '--fix'], {
18361836
stdio: ['ignore', 'pipe', 'pipe'],
18371837
cwd: path.projectPath(),
18381838
detached: true,

0 commit comments

Comments
 (0)