Skip to content

Commit fa72fb0

Browse files
authored
Merge pull request rhashimoto#276 from rhashimoto/hello-path-fixes
Fix hello demo import paths.
2 parents 1caeb13 + e4e87d6 commit fa72fb0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

demo/hello/hello.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// to use. Note that an asynchronous VFS requires an asynchronous build
55
// (Asyncify or JSPI). As of 2024-05-26, JSPI is only available behind
66
// a flag on Chromium browsers.
7-
// import SQLiteESMFactory from '../dist/wa-sqlite.mjs';
7+
// import SQLiteESMFactory from '../../dist/wa-sqlite.mjs';
88
import SQLiteESMFactory from '../../dist/wa-sqlite-async.mjs';
9-
// import SQLiteESMFactory from '../dist/wa-sqlite-jspi.mjs';
9+
// import SQLiteESMFactory from '../../dist/wa-sqlite-jspi.mjs';
1010

1111
// Uncomment one of the following imports to choose a VFS. Note that an
1212
// asynchronous VFS requires an asynchronous build, and an VFS using
@@ -19,11 +19,11 @@ import SQLiteESMFactory from '../../dist/wa-sqlite-async.mjs';
1919
// clear the appropriate storage for things to work.
2020
import { IDBBatchAtomicVFS as MyVFS } from '../../src/examples/IDBBatchAtomicVFS.js';
2121
// import { IDBMirrorVFS as MyVFS } from '../../src/examples/IDBMirrorVFS.js';
22-
// import { AccessHandlePoolVFS as MyVFS } from '../src/examples/AccessHandlePoolVFS.js';
23-
// import { OPFSAdaptiveVFS as MyVFS } from '../src/examples/OPFSAdaptiveVFS.js';
22+
// import { AccessHandlePoolVFS as MyVFS } from '../../src/examples/AccessHandlePoolVFS.js';
23+
// import { OPFSAdaptiveVFS as MyVFS } from '../../src/examples/OPFSAdaptiveVFS.js';
2424
// import { OPFSAnyContextVFS as MyVFS } from '../../src/examples/OPFSAnyContextVFS.js';
25-
// import { OPFSCoopSyncVFS as MyVFS } from '../src/examples/OPFSCoopSyncVFS.js';
26-
// import { OPFSPermutedVFS as MyVFS } from '../src/examples/OPFSPermutedVFS.js';
25+
// import { OPFSCoopSyncVFS as MyVFS } from '../../src/examples/OPFSCoopSyncVFS.js';
26+
// import { OPFSPermutedVFS as MyVFS } from '../../src/examples/OPFSPermutedVFS.js';
2727

2828
import * as SQLite from '../../src/sqlite-api.js';
2929

0 commit comments

Comments
 (0)