Skip to content

Commit

Permalink
Fix dexie import and export
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Nov 11, 2023
1 parent bc695c2 commit 99a4b37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 19 deletions.
17 changes: 0 additions & 17 deletions dev/lib/dexie-export-import.js

This file was deleted.

5 changes: 4 additions & 1 deletion dev/lib/dexie.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export * from 'dexie';
import Dexie from 'dexie';
import 'dexie-export-import';

export {Dexie};
2 changes: 1 addition & 1 deletion ext/js/pages/settings/backup-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

import * as Dexie from '../../../lib/dexie.js';
import {Dexie} from '../../../lib/dexie.js';
import {isObject, log} from '../../core.js';
import {OptionsUtil} from '../../data/options-util.js';
import {ArrayBufferUtil} from '../../data/sandbox/array-buffer-util.js';
Expand Down

0 comments on commit 99a4b37

Please sign in to comment.