eyereasoner 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/eye.d.ts +1 -1
- package/dist/eye.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -190,7 +190,7 @@ Github also serves these files with a `gzip` content encoding which compresses t
|
|
|
190
190
|
|
|
191
191
|
We also distribute bundles that can be dynamically imported on github pages; for example
|
|
192
192
|
```ts
|
|
193
|
-
const { eyereasoner } = await import('https://eyereasoner.github.io/eye-js/2/latest/
|
|
193
|
+
const { eyereasoner } = await import('https://eyereasoner.github.io/eye-js/2/latest/dynamic-import.js');
|
|
194
194
|
|
|
195
195
|
// Instantiate a new SWIPL module and log any results it produces to the console
|
|
196
196
|
const Module = await eyereasoner.SwiplEye({ print: (str: string) => { console.log(str) }, arguments: ['-q'] });
|