@knapsack/renderer-client 4.68.0--canary.4489.50a8dea.0 → 4.68.0--canary.4489.9565db3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/dist/renderer-client.mjs +2 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
# v4.67.6 (Thu Aug 15 2024)
|
2
|
+
|
3
|
+
#### 🐛 Bug Fix
|
4
|
+
|
5
|
+
- Merge branch 'latest' into feature/ksp-5384-add-ability-to-hide-component-props-and-title-in-figma ([@GormanDesign](https://github.com/GormanDesign))
|
6
|
+
|
7
|
+
#### 🏠 Internal
|
8
|
+
|
9
|
+
- Update babel [#4478](https://github.com/knapsack-labs/app-monorepo/pull/4478) ([@renovate[bot]](https://github.com/renovate[bot]))
|
10
|
+
- Update dependency node to v20.16.0 [#4481](https://github.com/knapsack-labs/app-monorepo/pull/4481) ([@renovate[bot]](https://github.com/renovate[bot]) [@greylabel](https://github.com/greylabel))
|
11
|
+
|
12
|
+
#### Authors: 3
|
13
|
+
|
14
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
15
|
+
- Grant Gaudet ([@greylabel](https://github.com/greylabel))
|
16
|
+
- Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
|
17
|
+
|
18
|
+
---
|
19
|
+
|
1
20
|
# v4.67.5 (Thu Aug 08 2024)
|
2
21
|
|
3
22
|
#### 🏠 Internal
|
package/dist/renderer-client.mjs
CHANGED
@@ -8,7 +8,8 @@ const {
|
|
8
8
|
const isReallyInIframe = window.parent !== window;
|
9
9
|
if (websocketsPort) {
|
10
10
|
if ('WebSocket' in window && window.location.hostname === 'localhost') {
|
11
|
-
const
|
11
|
+
const protocol = window.location.protocol === 'https:' ? 'wss' : 'ws';
|
12
|
+
const socket = new window.WebSocket(`${protocol}://localhost:${websocketsPort}`);
|
12
13
|
socket.addEventListener('message', msg => {
|
13
14
|
const theMsg = JSON.parse(msg?.data ?? {});
|
14
15
|
if (!theMsg?.event) return;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@knapsack/renderer-client",
|
3
3
|
"description": "",
|
4
|
-
"version": "4.68.0--canary.4489.
|
4
|
+
"version": "4.68.0--canary.4489.9565db3.0",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/renderer-client.mjs",
|
7
7
|
"module": "dist/renderer-client.mjs",
|
@@ -24,10 +24,10 @@
|
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
26
|
"@babel/core": "^7.25.2",
|
27
|
-
"@knapsack/babel-config-starter": "4.68.0--canary.4489.
|
28
|
-
"@knapsack/eslint-config-starter": "4.68.0--canary.4489.
|
29
|
-
"@knapsack/types": "4.68.0--canary.4489.
|
30
|
-
"@knapsack/typescript-config-starter": "4.68.0--canary.4489.
|
27
|
+
"@knapsack/babel-config-starter": "4.68.0--canary.4489.9565db3.0",
|
28
|
+
"@knapsack/eslint-config-starter": "4.68.0--canary.4489.9565db3.0",
|
29
|
+
"@knapsack/types": "4.68.0--canary.4489.9565db3.0",
|
30
|
+
"@knapsack/typescript-config-starter": "4.68.0--canary.4489.9565db3.0",
|
31
31
|
"@rollup/plugin-babel": "^5.3.1",
|
32
32
|
"@rollup/plugin-commonjs": "^21.1.0",
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
@@ -47,5 +47,5 @@
|
|
47
47
|
"directory": "apps/client/libs/renderer-client",
|
48
48
|
"type": "git"
|
49
49
|
},
|
50
|
-
"gitHead": "
|
50
|
+
"gitHead": "9565db33b4ca54b4f0e46478b18cf44027179234"
|
51
51
|
}
|