@coasys/ad4m-connect 0.13.0-postmessage-ws-proxy.0 → 0.13.0-postmessage-ws-proxy.2
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/dist/PostMessageWebSocket.d.ts +5 -1
- package/dist/core.js +239 -262
- package/dist/core.js.map +3 -3
- package/dist/index.js +257 -280
- package/dist/index.js.map +3 -3
- package/dist/web.js +206 -271
- package/dist/web.js.map +3 -3
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -32,25 +32,12 @@
|
|
|
32
32
|
"require": "./dist/utils.js"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"release": "np --no-2fa --no-tests --tag=latest",
|
|
37
|
-
"release:beta": "np --no-2fa --no-tests --tag=beta --any-branch",
|
|
38
|
-
"dev": "NODE_ENV=dev && vite dev",
|
|
39
|
-
"serve": "npx serve",
|
|
40
|
-
"build": "pnpm run build:index && pnpm run build:core && pnpm run build:web && pnpm run build:utils && tsc",
|
|
41
|
-
"test": "vitest run",
|
|
42
|
-
"test:watch": "vitest",
|
|
43
|
-
"build:index": "tsc --project tsconfig.json && node scripts/esbuild_index.js",
|
|
44
|
-
"build:core": "tsc --project tsconfig.json && node scripts/esbuild.js",
|
|
45
|
-
"build:web": "tsc --project tsconfig.json && node scripts/esbuild_web.js",
|
|
46
|
-
"build:utils": "tsc --project tsconfig.json && node scripts/esbuild_utils.js"
|
|
47
|
-
},
|
|
48
35
|
"author": {
|
|
49
36
|
"name": "Nicolas Luck",
|
|
50
37
|
"email": "nicolas@coasys.org"
|
|
51
38
|
},
|
|
52
39
|
"devDependencies": {
|
|
53
|
-
"@coasys/ad4m": "
|
|
40
|
+
"@coasys/ad4m": "0.13.0-test-6",
|
|
54
41
|
"@types/node": "^16.11.11",
|
|
55
42
|
"esbuild": "^0.15.5",
|
|
56
43
|
"esbuild-plugin-copy": "^2.1.1",
|
|
@@ -74,5 +61,18 @@
|
|
|
74
61
|
"@coasys/ad4m": "*"
|
|
75
62
|
}
|
|
76
63
|
},
|
|
77
|
-
"version": "0.13.0-postmessage-ws-proxy.
|
|
78
|
-
|
|
64
|
+
"version": "0.13.0-postmessage-ws-proxy.2",
|
|
65
|
+
"scripts": {
|
|
66
|
+
"release": "np --no-2fa --no-tests --tag=latest",
|
|
67
|
+
"release:beta": "np --no-2fa --no-tests --tag=beta --any-branch",
|
|
68
|
+
"dev": "NODE_ENV=dev && vite dev",
|
|
69
|
+
"serve": "npx serve",
|
|
70
|
+
"build": "pnpm run build:index && pnpm run build:core && pnpm run build:web && pnpm run build:utils && tsc",
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"build:index": "tsc --project tsconfig.json && node scripts/esbuild_index.js",
|
|
74
|
+
"build:core": "tsc --project tsconfig.json && node scripts/esbuild.js",
|
|
75
|
+
"build:web": "tsc --project tsconfig.json && node scripts/esbuild_web.js",
|
|
76
|
+
"build:utils": "tsc --project tsconfig.json && node scripts/esbuild_utils.js"
|
|
77
|
+
}
|
|
78
|
+
}
|