jsgui3-server 0.0.97 → 0.0.98

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
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "https://github.com/metabench/jsgui3-server.git"
46
46
  },
47
- "version": "0.0.97"
47
+ "version": "0.0.98"
48
48
  }
@@ -1,4 +1,6 @@
1
- const { Publisher } = require('jsgui3-html');
1
+ //const { Publisher } = require('jsgui3-html');
2
+
3
+ const {Evented_Class} = require('lang-tools');
2
4
 
3
5
  // Could have this as the general purpose HTTP publishing component / system / part of the system.
4
6
 
@@ -8,7 +10,7 @@ const { Publisher } = require('jsgui3-html');
8
10
 
9
11
 
10
12
 
11
- class HTTP_Publisher extends Publisher {
13
+ class HTTP_Publisher extends Evented_Class {
12
14
  constructor(spec) {
13
15
  super(spec)
14
16