Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed May 18, 2024
1 parent eb544d0 commit 0af70a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions storage/framework/core/actions/src/generate/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { log } from '@stacksjs/logging'
import { frameworkPath, projectPath } from '@stacksjs/path'
import type { GeneratorOptions } from '@stacksjs/types'
import { runNpmScript } from '@stacksjs/utils'
import { generateVsCodeCustomData as genVsCodeCustomData, runAction } from '../helpers'
import { runAction } from '../helpers'
import { generateVsCodeCustomData as genVsCodeCustomData } from '../helpers/vscode-custom-data'

// import { files } from '@stacksjs/storage'

Expand Down Expand Up @@ -74,7 +75,7 @@ export async function generateIdeHelpers(options?: GeneratorOptions) {
}

export async function generateComponentMeta(options?: GeneratorOptions) {
const result = await runNpmScript(NpmScript.GenerateComponentMeta, options)
const result = await genVsCodeCustomData()

if (result.isErr()) {
log.error('There was an error generating your component meta information.', result.error)
Expand Down
8 changes: 4 additions & 4 deletions storage/framework/core/actions/src/helpers/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './component-meta'
export * from './lib-entries'
export * from './package-json'
// export * from './component-meta'
// export * from './lib-entries'
// export * from './package-json'
export * from './utils'
export * from './vscode-custom-data'
// export * from './vscode-custom-data'

0 comments on commit 0af70a0

Please sign in to comment.