Skip to content

Commit

Permalink
Prepare pull service to be exported from themes package
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmengo committed Sep 20, 2024
1 parent 73ba3fd commit 482be39
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/theme/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Push from './cli/commands/theme/push.js'
import Rename from './cli/commands/theme/rename.js'
import Serve from './cli/commands/theme/serve.js'
import Share from './cli/commands/theme/share.js'
import {pull} from './cli/services/pull.js'

const COMMANDS = {
'theme:init': Init,
Expand All @@ -36,6 +37,12 @@ const COMMANDS = {

export default COMMANDS

const PUBLIC_COMMANDS = {
pull,
}

export {PUBLIC_COMMANDS}

/** Development server for theme extensions */
export * from './cli/utilities/theme-ext-environment/theme-ext-server.js'

Expand Down

0 comments on commit 482be39

Please sign in to comment.