@muze-nl/jsfs-solid 0.1.4 → 0.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muze-nl/jsfs-solid",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "author": "auke@muze.nl",
5
5
  "source": "src/SolidAdapter.js",
6
6
  "main": "dist/browser.js",
@@ -28,7 +28,7 @@
28
28
  "homepage": "https://github.com/muze-nl/jsfs-solid#readme",
29
29
  "dependencies": {
30
30
  "@muze-nl/jaqt": "^0.10.3",
31
- "@muze-nl/jsfs": "^0.3.0",
31
+ "@muze-nl/jsfs": "^0.3.1",
32
32
  "@muze-nl/metro": "^0.6.17",
33
33
  "@muze-nl/metro-oidc": "^0.5.3",
34
34
  "@muze-nl/metro-oldm": "^0.2.1",
package/package.json~ CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muze-nl/jsfs-solid",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "author": "auke@muze.nl",
5
5
  "source": "src/SolidAdapter.js",
6
6
  "main": "dist/browser.js",
@@ -31,7 +31,7 @@
31
31
  "@muze-nl/jsfs": "^0.3.0",
32
32
  "@muze-nl/metro": "^0.6.17",
33
33
  "@muze-nl/metro-oidc": "^0.5.3",
34
- "@muze-nl/metro-oldm": "^0.2.0",
34
+ "@muze-nl/metro-oldm": "^0.2.1",
35
35
  "@muze-nl/oldm": "^0.3.6"
36
36
  }
37
37
  }
@@ -1,5 +1,5 @@
1
- import Path from '@muze-nl/jsfs/src/Path.js';
2
- import HttpAdapter from '@muze-nl/jsfs/src/Adapters/HttpAdapter.js'
1
+ import Path from '@muze-nl/jsfs/src/Path.mjs';
2
+ import HttpAdapter from '@muze-nl/jsfs/src/Adapters/Http.mjs'
3
3
  import {client, url} from '@muze-nl/metro/src/metro.mjs'
4
4
  import getdatamw from '@muze-nl/metro/src/mw/getdata.mjs'
5
5
  import oidc from '@muze-nl/metro-oidc'
@@ -13,6 +13,7 @@ export default class SolidAdapter extends HttpAdapter {
13
13
  #path;
14
14
 
15
15
  constructor(metroClient, path='/', solidConfiguration={}) {
16
+ super(metroClient, path)
16
17
  this.#client = client(metroClient)
17
18
  .with( oidc.oidcmw(solidConfiguration))
18
19
  .with( oldmmw(solidConfiguration))