@symbo.ls/socket 2.8.0 → 2.9.0

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/socket",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "Connect your app to Symbols editor",
5
5
  "main": "server.js",
6
6
  "author": "symbo.ls",
@@ -30,5 +30,5 @@
30
30
  "standard": {
31
31
  "parser": "babel-eslint"
32
32
  },
33
- "gitHead": "a36394ae84104d978890e5fc4630deb39c027e2d"
33
+ "gitHead": "b02ba2f43dd86df7849b4cb46de0d3d34ab291d4"
34
34
  }
package/server.js CHANGED
@@ -10,7 +10,7 @@ import mergeDeep from 'merge-deep' // use the require method
10
10
  import { createRequire } from 'module'
11
11
 
12
12
  const require = createRequire(import.meta.url) // construct the require method
13
- const DES_SYS_DEFAULT_FILE = require('@symbo.ls/init/src/dynamic.json') // Bring in the ability to create the 'require' method
13
+ const DES_SYS_DEFAULT_FILE = require('@symbo.ls/init/dynamic.json') // Bring in the ability to create the 'require' method
14
14
 
15
15
  const app = express()
16
16