@hyperframes/studio 0.1.5 → 0.1.6

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/index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>HyperFrames Studio</title>
7
- <script type="module" crossorigin src="/assets/index-B3C3oxF8.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-Df6fO-S6.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-KoBceNoU.css">
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperframes/studio",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "files": [
5
5
  "src",
6
6
  "dist"
@@ -25,7 +25,7 @@
25
25
  "@codemirror/view": "^6.40.0",
26
26
  "@phosphor-icons/react": "^2.1.10",
27
27
  "codemirror": "^6.0.1",
28
- "@hyperframes/core": "0.1.5"
28
+ "@hyperframes/core": "0.1.6"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/react": "^19.0.0",
package/src/App.tsx CHANGED
@@ -388,8 +388,9 @@ export function StudioApp() {
388
388
  }
389
389
 
390
390
  setLintModal(findings);
391
- } catch {
392
- setLintModal([{ severity: "error", message: "Failed to run lint." }]);
391
+ } catch (err) {
392
+ const msg = err instanceof Error ? err.message : String(err);
393
+ setLintModal([{ severity: "error", message: `Failed to run lint: ${msg}` }]);
393
394
  } finally {
394
395
  setLinting(false);
395
396
  }