Skip to content

Commit ea23c82

Browse files
committed
chore: wip
chore: wip chore: wip chore: wip chore: wip chore: wip chore: wip chore: wip chore: wip
1 parent 1e368b1 commit ea23c82

File tree

109 files changed

+315
-162
lines changed

Some content is hidden

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

109 files changed

+315
-162
lines changed

.stacks/core/actions/build.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { BuildConfig } from '@stacksjs/development'
2-
import { alias, defineBuildConfig } from '@stacksjs/development'
2+
import { defineBuildConfig } from '@stacksjs/development'
3+
import { alias } from '@stacksjs/alias'
34

45
const devEntries: BuildConfig['entries'] = [
56
{

.stacks/core/actions/src/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { log } from '@stacksjs/logging'
22
import { hasComponents, hasFunctions } from '@stacksjs/storage'
33
import { runNpmScript } from '@stacksjs/utils'
44
import { type BuildOptions, NpmScript } from '@stacksjs/types'
5-
import { types as generateTypes } from './generate'
5+
import { generateTypes } from './generate'
66

77
export async function invoke(options: BuildOptions) {
88
if (options.components)

.stacks/core/actions/src/clean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { log } from '@stacksjs/cli'
1+
import { log } from '@stacksjs/logging'
22
import { projectPath } from '@stacksjs/path'
33
import { del } from '@stacksjs/utils'
44

.stacks/core/actions/src/helpers/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as storage from '@stacksjs/storage'
2-
import { italic, log, runCommand, runCommands } from '@stacksjs/cli'
2+
import { italic, runCommand, runCommands } from '@stacksjs/cli'
3+
import { log } from '@stacksjs/logging'
34
import { actionsPath, functionsPath } from '@stacksjs/path'
45
import type { ActionOptions, CommandResult } from '@stacksjs/types'
56
import { err } from '@stacksjs/error-handling'

.stacks/core/actions/src/lint/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { ExitCode, runCommands } from '@stacksjs/cli'
1+
import { runCommands } from '@stacksjs/cli'
22
import { projectPath } from '@stacksjs/path'
3-
import { NpmScript } from '@stacksjs/types'
3+
import { ExitCode, NpmScript } from '@stacksjs/types'
44

55
export default async function lintAction() {
66
const result = await runCommands([

.stacks/core/actions/src/make.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { italic, log, spawn } from '@stacksjs/cli'
1+
import { italic, spawn } from '@stacksjs/cli'
2+
import { log } from '@stacksjs/logging'
23
import { createFolder, doesFolderExist, writeTextFile } from '@stacksjs/storage'
34
import { frameworkPath, projectPath, resolve } from '@stacksjs/path'
45
import type { MakeOptions } from '@stacksjs/types'

.stacks/core/actions/src/migrate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { migrations as generateMigrations } from './generate'
1+
import { generateMigrations } from './generate'
22

33
await generateMigrations()

.stacks/core/actions/src/preinstall.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { log, spawn } from '@stacksjs/cli'
1+
import { spawn } from '@stacksjs/cli'
2+
import { log } from '@stacksjs/logging'
23
import { projectPath } from '@stacksjs/path'
34
import type { PreinstallOptions } from '@stacksjs/types'
45
import { determineDebugLevel } from '@stacksjs/utils'

.stacks/core/actions/src/release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
import { frameworkPath } from '@stacksjs/path'
33
import { Action } from '@stacksjs/types'
4-
import { log } from '@stacksjs/cli'
4+
import { log } from '@stacksjs/logging'
55
import { app } from '@stacksjs/config'
66
import { runActions } from './'
77

.stacks/core/actions/src/seed.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { seeder } from './generate'
2-
3-
await seeder()
1+
// import { seeder } from './generate'
2+
//
3+
// await seeder()

0 commit comments

Comments
 (0)