Skip to content

Commit

Permalink
fix(engine/demo): import path
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Dec 28, 2023
1 parent fba6d42 commit 6effc2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/engine/demo/doc.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {createLogger} from '@alwatr/logger';

import {AlwatrStore, Region, StoreFileExtension, StoreFileType} from '../src/alwatr-store.js';
import {AlwatrStore, Region, StoreFileExtension, StoreFileType} from '@alwatr/store-engine';

const logger = createLogger('AlwatrStore/Demo', true);
logger.banner('AlwatrStore/Demo');
Expand All @@ -27,7 +27,7 @@ async function quickstart() {
// Define a new document store file.
alwatrStore.defineStoreFile({
...docId,
type: StoreFileType.Collection,
type: StoreFileType.Document,
extension: StoreFileExtension.Json,
}, {
title: 'new title',
Expand Down

0 comments on commit 6effc2c

Please sign in to comment.