@symbo.ls/socket 2.11.528 → 2.25.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/client.js +1 -3
- package/package.json +4 -5
package/client.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
3
|
import * as utils from '@domql/utils'
|
|
4
|
-
import * as globals from '@domql/globals'
|
|
5
4
|
import io from 'socket.io-client'
|
|
6
5
|
|
|
7
|
-
const { isFunction, isArray } = utils.default || utils
|
|
8
|
-
const { window } = globals.default || globals
|
|
6
|
+
const { window, isFunction, isArray } = utils.default || utils
|
|
9
7
|
const ENV = process.env.NODE_ENV
|
|
10
8
|
|
|
11
9
|
const defautlOpts = {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/socket",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.1",
|
|
4
4
|
"description": "Connect your app to Symbols editor",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"author": "symbo.ls",
|
|
@@ -10,9 +10,8 @@
|
|
|
10
10
|
"start": "nodemon server.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@domql/
|
|
14
|
-
"@
|
|
15
|
-
"@symbo.ls/init": "^2.11.528",
|
|
13
|
+
"@domql/utils": "^2.25.1",
|
|
14
|
+
"@symbo.ls/init": "^2.25.1",
|
|
16
15
|
"chalk": "^5.0.0",
|
|
17
16
|
"express": "^4.18.1",
|
|
18
17
|
"http": "^0.0.1-security",
|
|
@@ -20,5 +19,5 @@
|
|
|
20
19
|
"socket.io": "^4.5.2",
|
|
21
20
|
"socket.io-client": "^4.5.2"
|
|
22
21
|
},
|
|
23
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "f4de780d7f974a235640526d303a3f3dc68ac1b4"
|
|
24
23
|
}
|