@muze-nl/simplystore 0.7.2 → 0.7.4

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/simplystore",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "main": "src/server.mjs",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -16,9 +16,9 @@
16
16
  "bugs": "https://github.com/simplyedit/simplystore/issues",
17
17
  "homepage": "https://github.com/simplyedit/simplystore#readme",
18
18
  "dependencies": {
19
- "@muze-nl/jaqt": "^0.10.1",
19
+ "@muze-nl/jaqt": "^0.10.2",
20
20
  "@muze-nl/jsontag": "^0.9.11",
21
- "@muze-nl/od-jsontag": "^0.3.3",
21
+ "@muze-nl/od-jsontag": "^0.3.4",
22
22
  "codemirror": "^6.0.1",
23
23
  "express": "^4.18.1",
24
24
  "json-pointer": "^0.6.2",
@@ -6,6 +6,7 @@ import * as odJSONTag from '@muze-nl/od-jsontag/src/jsontag.mjs'
6
6
  import {source} from '@muze-nl/od-jsontag/src/symbols.mjs'
7
7
  import parse from '@muze-nl/od-jsontag/src/parse.mjs'
8
8
  import {_,from,not,anyOf,allOf,asc,desc,sum,count,avg,max,min,many,one,distinct} from '@muze-nl/jaqt'
9
+ import process from 'node:process'
9
10
 
10
11
  let dataspace
11
12
  let meta = {}
package/src/server.mjs CHANGED
@@ -7,6 +7,7 @@ import { fileURLToPath } from 'url'
7
7
  import {appendFile} from './util.mjs'
8
8
  import path from 'path'
9
9
  import httpStatusCodes from './statusCodes.mjs'
10
+ import process from 'node:process'
10
11
 
11
12
  const server = express()
12
13
  const __dirname = path.dirname(path.dirname(fileURLToPath(import.meta.url)))