@symbo.ls/socket 2.10.146 → 2.10.149

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.10.146",
3
+ "version": "2.10.149",
4
4
  "description": "Connect your app to Symbols editor",
5
5
  "main": "server.js",
6
6
  "author": "symbo.ls",
@@ -17,5 +17,5 @@
17
17
  "socket.io": "^4.5.2",
18
18
  "socket.io-client": "^4.5.2"
19
19
  },
20
- "gitHead": "88b7d655d5bf1197f2977f047aaeb97e919e1167"
20
+ "gitHead": "e12c846d47b3309dc6fbe18c359a3db2b8586cbe"
21
21
  }
package/server.js CHANGED
@@ -16,7 +16,7 @@ const app = express()
16
16
  export const updateDynamycFile = (changes, options = {}) => {
17
17
  const { key, live } = options
18
18
  const file = require('@symbo.ls/init/dynamic.json')
19
-
19
+
20
20
  const newMerge = overwriteDeep(changes, file)
21
21
  const mergeStr = JSON.stringify(newMerge, null, 2)
22
22
  const initPath = process.cwd() + '/node_modules/@symbo.ls/init/dynamic.json'