File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- import Schema from "./Schema" ;
1+ import Schema from "./Schema.js " ;
22
33class Collection extends EventTarget {
44 constructor ( schema , connector ) {
Original file line number Diff line number Diff line change 1- import Collection from "./Collection" ;
2- import Schema from "./Schema" ;
1+ import Collection from "./Collection.js " ;
2+ import Schema from "./Schema.js " ;
33class Connector extends EventTarget {
44 constructor ( engine ) {
55 super ( ) ;
Original file line number Diff line number Diff line change 11import Dexie from "dexie" ;
2- import Connector from "./Connector" ;
3- import Engine from "./Engine" ;
2+ import Connector from "./Connector.js " ;
3+ import Engine from "./Engine.js " ;
44
55/**
66 * IndexedDBEngine - A storage engine that uses IndexedDB (via Dexie) for persistence
Original file line number Diff line number Diff line change 1- import Connector from "./Connector" ;
2- import Engine from "./Engine" ;
1+ import Connector from "./Connector.js " ;
2+ import Engine from "./Engine.js " ;
33
44/**
55 * LocalStorageEngine - A storage engine that uses localStorage for persistence
Original file line number Diff line number Diff line change 1- import Connector from "./Connector" ;
1+ import Connector from "./Connector.js " ;
22
33class Store {
44 constructor ( { name, connector } ) {
Original file line number Diff line number Diff line change 1- export { default as Schema } from "./Schema" ;
2- export { default as Connector } from "./Connector" ;
3- export { default as Store } from "./Store" ;
4- export { default as LocalStorageConnector } from "./LocalStorageConnector" ;
5- export { default as IndexedDBConnector } from "./IndexedDBConnector" ;
1+ export { default as Schema } from "./Schema.js " ;
2+ export { default as Connector } from "./Connector.js " ;
3+ export { default as Store } from "./Store.js " ;
4+ export { default as LocalStorageConnector } from "./LocalStorageConnector.js " ;
5+ export { default as IndexedDBConnector } from "./IndexedDBConnector.js " ;
You can’t perform that action at this time.
0 commit comments