@norskvideo/norsk-studio-alpha 1.27.0-2025-11-03-ad2c62cb → 1.27.0-2025-11-07-cac4dd6c

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/client/info.js +9 -7
  2. package/package.json +4 -5
package/client/info.js CHANGED
@@ -126,13 +126,15 @@ var require_util = __commonJS({
126
126
  }
127
127
  async function waitForCondition(condition, timeout, interval, name) {
128
128
  return new Promise((r, f) => {
129
- const i = setInterval(async () => {
130
- const success = await condition();
131
- if (success) {
132
- clearInterval(i);
133
- clearTimeout(t);
134
- r();
135
- }
129
+ const i = setInterval(() => {
130
+ void (async () => {
131
+ const success = await condition();
132
+ if (success) {
133
+ clearInterval(i);
134
+ clearTimeout(t);
135
+ r();
136
+ }
137
+ })();
136
138
  }, interval ?? 10);
137
139
  const t = setTimeout(() => {
138
140
  clearInterval(i);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norskvideo/norsk-studio-alpha",
3
- "version": "1.27.0-2025-11-03-ad2c62cb",
3
+ "version": "1.27.0-2025-11-07-cac4dd6c",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "clean": "rm -rf lib client build .wireit && make clean",
@@ -164,9 +164,9 @@
164
164
  "@apidevtools/json-schema-ref-parser": "^12.0.1",
165
165
  "@norskvideo/norsk-player": "1.0.4",
166
166
  "@norskvideo/norsk-player-react": "*",
167
- "@norskvideo/norsk-sdk": "^1.0.402-2025-11-03-3751e83e",
168
- "@norskvideo/norsk-studio": "1.27.0-2025-11-03-ad2c62cb",
169
- "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-11-03-ad2c62cb",
167
+ "@norskvideo/norsk-sdk": "^1.0.402-2025-11-07-f4307211",
168
+ "@norskvideo/norsk-studio": "1.27.0-2025-11-07-cac4dd6c",
169
+ "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-11-07-cac4dd6c",
170
170
  "@norskvideo/webrtc-client": "^0.1.2",
171
171
  "@react-icons/all-files": "^4.1.0",
172
172
  "chart.js": "^4.4.2",
@@ -199,7 +199,6 @@
199
199
  "hls-parser": "^0.10.8",
200
200
  "mocha": "^10.4.0",
201
201
  "openapi-typescript": "^7.10.1",
202
- "puppeteer": "^24.26.1",
203
202
  "tailwindcss": "^3.4.1",
204
203
  "typescript": "^5.4.5"
205
204
  }