diff --git a/package.json b/package.json index 224d015d..d4cf5096 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,11 @@ "import": "./dist/codemirror-editor.js", "require": null }, + "./core": { + "types": "./dist/core.d.ts", + "import": "./dist/core.js", + "require": null + }, "./package.json": "./package.json", "./style.css": "./dist/vue-repl.css", "./dist/style.css": "./dist/vue-repl.css" diff --git a/src/core.ts b/src/core.ts new file mode 100644 index 00000000..dc1b9dff --- /dev/null +++ b/src/core.ts @@ -0,0 +1,11 @@ +export { + useStore, + File, + type SFCOptions, + type StoreState, + type Store, + type ReplStore, +} from './store' +export { useVueImportMap, mergeImportMap, type ImportMap } from './import-map' +export { compileFile } from './transform' +export { version as languageToolsVersion } from '@vue/language-service/package.json' diff --git a/src/index.ts b/src/index.ts index c18d25f9..b055c6e6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,17 +1,5 @@ -export { default as Repl } from './Repl.vue' +export { default as Repl, type Props as ReplProps } from './Repl.vue' export { default as Preview } from './output/Preview.vue' -export { default as Sandbox } from './output/Sandbox.vue' -export type { SandboxProps } from './output/Sandbox.vue' -export { - useStore, - File, - type SFCOptions, - type StoreState, - type Store, - type ReplStore, -} from './store' -export { useVueImportMap, mergeImportMap, type ImportMap } from './import-map' -export { compileFile } from './transform' -export type { Props as ReplProps } from './Repl.vue' +export { default as Sandbox, type SandboxProps } from './output/Sandbox.vue' export type { OutputModes } from './types' -export { version as languageToolsVersion } from '@vue/language-service/package.json' +export * from './core' diff --git a/vite.config.ts b/vite.config.ts index b07153ed..1b007b87 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -57,6 +57,7 @@ export default mergeConfig(base, { lib: { entry: { 'vue-repl': './src/index.ts', + core: './src/core.ts', 'monaco-editor': './src/editor/MonacoEditor.vue', 'codemirror-editor': './src/editor/CodeMirrorEditor.vue', },