@cocreate/file-server 1.15.0 → 1.15.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.15.1](https://github.com/CoCreate-app/CoCreate-file-server/compare/v1.15.0...v1.15.1) (2023-12-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed organizations map and url module ([a82bc56](https://github.com/CoCreate-app/CoCreate-file-server/commit/a82bc56a8e82f9fdabfdeb7592e140e4c3ad3aff))
7
+
1
8
  # [1.15.0](https://github.com/CoCreate-app/CoCreate-file-server/compare/v1.14.1...v1.15.0) (2023-12-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/file-server",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "A simple file-server component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "file-server",
package/src/index.js CHANGED
@@ -20,10 +20,6 @@
20
20
  // you must obtain a commercial license from CoCreate LLC.
21
21
  // For details, visit <https://cocreate.app/licenses/> or contact us at sales@cocreate.app.
22
22
 
23
- const { URL } = require('url');
24
-
25
- const organizations = new Map();
26
-
27
23
  class CoCreateFileSystem {
28
24
  constructor(render) {
29
25
  this.render = render