Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Both UMD and ESM bundles externalize rdflib to keep bundle sizes small and avoid
```html
<script type="module">
import * as $rdf from 'https://esm.sh/rdflib';
import { solidLogicSingleton, store, authn } from 'https://esm.sh/solid-logic@4.0.1';
import { solidLogicSingleton, store, authn } from 'https://esm.sh/solid-logic@4.0.2';

// Example usage
console.log('Store:', store);
Expand All @@ -81,7 +81,7 @@ Both UMD and ESM bundles externalize rdflib to keep bundle sizes small and avoid
{
"imports": {
"rdflib": "https://esm.sh/rdflib",
"solid-logic": "https://esm.sh/solid-logic@4.0.1"
"solid-logic": "https://esm.sh/solid-logic@4.0.2"
}
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-logic",
"version": "4.0.1",
"version": "4.0.2",
"description": "Core business logic of SolidOS",
"type": "module",
"main": "dist/solid-logic.js",
Expand Down
2 changes: 1 addition & 1 deletion test/testBundles/test-umd.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>Solid Logic UMD Bundle Browser Test</h1>
{
"imports": {
"rdflib": "https://esm.sh/rdflib",
"solid-logic": "https://esm.sh/solid-logic@4.0.1"
"solid-logic": "https://esm.sh/solid-logic@4.0.2"
}
}
</script>
Expand Down
3 changes: 1 addition & 2 deletions webpack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ const externalsBase = {
}

const externalsESM = {
...externalsBase,
'rdflib': 'rdflib'
'rdflib': { import: 'rdflib' }
}

const commonConfig = {
Expand Down
Loading