@gudhub/core 1.2.4-beta.62 → 1.2.4-beta.64
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/.parcel-cache/83e7562660f7cc15-BundleGraph +0 -0
- package/.parcel-cache/d3a1b9507cb44047-AssetGraph +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/dc1da35000e13623-RequestGraph +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/snapshot-dc1da35000e13623.txt +39510 -29010
- package/GUDHUB/WebSocket/WebsocketHandler.js +2 -0
- package/package.json +1 -2
- package/vite.config.esm.js +11 -36
- package/vite.config.umd.js +4 -36
- package/dist/gudhub.es.js +0 -13493
- package/dist/gudhub.umd.js +0 -197
|
@@ -54,6 +54,8 @@ export function WebsocketHandler(gudhub, message) {
|
|
|
54
54
|
break;
|
|
55
55
|
case '/ws/emit-to-user':
|
|
56
56
|
console.log('/ws/emit-to-user - ', message);
|
|
57
|
+
const emitToUserData = JSON.parse(message.response);
|
|
58
|
+
gudhub.pipeService.emit(emitToUserData.service_id, { user_id: message.user_id }, emitToUserData);
|
|
57
59
|
break;
|
|
58
60
|
case '/ws/broadcast-to-app-subscribers':
|
|
59
61
|
console.log('/ws/broadcast-to-app-subscribers - ', message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gudhub/core",
|
|
3
|
-
"version": "1.2.4-beta.
|
|
3
|
+
"version": "1.2.4-beta.64",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"test": "NODE_ENV=test mocha $(find ./GUDHUB -print | grep -i test.js)",
|
|
6
6
|
"prepublishOnly": "chmod +x ./build.sh; ./build.sh",
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
"date-fns": "^2.16.1",
|
|
48
48
|
"fuse.js": "^6.4.6",
|
|
49
49
|
"jsonpath": "^1.0.2",
|
|
50
|
-
"magic-string": "^0.30.17",
|
|
51
50
|
"qs": "^6.9.4",
|
|
52
51
|
"regenerator-runtime": "^0.13.9",
|
|
53
52
|
"ws": "^7.3.1"
|
package/vite.config.esm.js
CHANGED
|
@@ -3,13 +3,8 @@ import { resolve } from 'path'
|
|
|
3
3
|
import { babel } from '@rollup/plugin-babel';
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
let isMinified = true;
|
|
7
|
-
|
|
8
|
-
|
|
9
6
|
export default defineConfig({
|
|
10
7
|
build: {
|
|
11
|
-
minify: true,
|
|
12
|
-
sourcemap: 'inline',
|
|
13
8
|
rollupOptions: {
|
|
14
9
|
output: {
|
|
15
10
|
// Enables inline worker support using a data URI
|
|
@@ -30,38 +25,18 @@ export default defineConfig({
|
|
|
30
25
|
emptyOutDir: false,
|
|
31
26
|
},
|
|
32
27
|
plugins: [
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// map: { mappings: '' } // Optional: if you want source maps for the worker
|
|
41
|
-
// }
|
|
42
|
-
// }
|
|
43
|
-
// return code
|
|
44
|
-
// }
|
|
45
|
-
// },
|
|
46
|
-
{
|
|
47
|
-
name: 'worker-loader',
|
|
48
|
-
transform(code, id) {
|
|
49
|
-
if (id.endsWith('PARCEL_APP_REQUEST_WORKER_FILENAME.js')) {
|
|
50
|
-
const transformedCode = `export default new URL('${id}?worker', import.meta.url);`
|
|
51
|
-
|
|
52
|
-
const s = new MagicString(code);
|
|
53
|
-
s.overwrite(0, code.length, transformedCode);
|
|
54
|
-
|
|
55
|
-
return {
|
|
56
|
-
code: s.toString(),
|
|
57
|
-
map: s.generateMap({ hires: true }) // hires = high resolution mapping
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// No transformation, just return null
|
|
62
|
-
return null
|
|
28
|
+
{
|
|
29
|
+
name: 'worker-loader',
|
|
30
|
+
transform(code, id) {
|
|
31
|
+
if (id.endsWith('PARCEL_APP_REQUEST_WORKER_FILENAME.js')) {
|
|
32
|
+
return {
|
|
33
|
+
code: `export default new URL('${id}?worker', import.meta.url)`,
|
|
34
|
+
map: null // Optional: if you want source maps for the worker
|
|
63
35
|
}
|
|
64
|
-
}
|
|
36
|
+
}
|
|
37
|
+
return code
|
|
38
|
+
}
|
|
39
|
+
},
|
|
65
40
|
babel({
|
|
66
41
|
presets: [
|
|
67
42
|
[
|
package/vite.config.umd.js
CHANGED
|
@@ -3,19 +3,8 @@ import { resolve } from 'path'
|
|
|
3
3
|
import { babel } from '@rollup/plugin-babel';
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
import MagicString from 'magic-string'
|
|
7
|
-
|
|
8
|
-
// export default {
|
|
9
|
-
// name: 'worker-loader',
|
|
10
|
-
|
|
11
|
-
// }
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
6
|
export default defineConfig({
|
|
16
7
|
build: {
|
|
17
|
-
minify: true,
|
|
18
|
-
sourcemap: 'inline',
|
|
19
8
|
rollupOptions: {
|
|
20
9
|
output: {
|
|
21
10
|
// Enables inline worker support using a data URI
|
|
@@ -36,39 +25,18 @@ export default defineConfig({
|
|
|
36
25
|
emptyOutDir: false,
|
|
37
26
|
},
|
|
38
27
|
plugins: [
|
|
39
|
-
// {
|
|
40
|
-
// name: 'worker-loader',
|
|
41
|
-
// transform(code, id) {
|
|
42
|
-
// if (id.endsWith('PARCEL_APP_REQUEST_WORKER_FILENAME.js')) {
|
|
43
|
-
// return {
|
|
44
|
-
// code: `export default new URL('${id}?worker', import.meta.url)`,
|
|
45
|
-
// map: null // Optional: if you want source maps for the worker
|
|
46
|
-
// // map: { mappings: '' } // Optional: if you want source maps for the worker
|
|
47
|
-
// }
|
|
48
|
-
// }
|
|
49
|
-
// return code
|
|
50
|
-
// }
|
|
51
|
-
// },
|
|
52
28
|
{
|
|
53
29
|
name: 'worker-loader',
|
|
54
30
|
transform(code, id) {
|
|
55
31
|
if (id.endsWith('PARCEL_APP_REQUEST_WORKER_FILENAME.js')) {
|
|
56
|
-
const transformedCode = `export default new URL('${id}?worker', import.meta.url);`
|
|
57
|
-
|
|
58
|
-
const s = new MagicString(code);
|
|
59
|
-
s.overwrite(0, code.length, transformedCode);
|
|
60
|
-
|
|
61
32
|
return {
|
|
62
|
-
code:
|
|
63
|
-
map:
|
|
64
|
-
}
|
|
33
|
+
code: `export default new URL('${id}?worker', import.meta.url)`,
|
|
34
|
+
map: null // Optional: if you want source maps for the worker
|
|
35
|
+
}
|
|
65
36
|
}
|
|
66
|
-
|
|
67
|
-
// No transformation, just return null
|
|
68
|
-
return null
|
|
37
|
+
return code
|
|
69
38
|
}
|
|
70
39
|
},
|
|
71
|
-
|
|
72
40
|
babel({
|
|
73
41
|
presets: [
|
|
74
42
|
[
|