Skip to content

Commit

Permalink
fix: exporting modules
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolink committed Feb 28, 2024
1 parent b113166 commit 9e28f83
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
File renamed without changes.
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
// make it work with --isolatedModules
export default {};
export default {};

export {withLivePreview} from './withLivePreview'
export {withContentful} from './withContentful'
export {withEntryArgMutator} from './withEntryArgMutator'
export {ContentfulDebugComponent} from './components/ContentfulDebugComponent'
export * from './manager'
export * from './preview'
2 changes: 1 addition & 1 deletion src/stories/DebugComponent.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {Meta} from '@storybook/react';
import {StoryObj} from "@storybook/react";
import {ContentfulDebugComponent} from "./ContentfulDebugComponent";
import {ContentfulDebugComponent} from "../components/ContentfulDebugComponent";
import {withEntryArgMutator} from "../withEntryArgMutator";

const meta = {
Expand Down

0 comments on commit 9e28f83

Please sign in to comment.