@fluojs/studio 1.0.1 → 1.0.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/README.ko.md +2 -2
- package/README.md +2 -2
- package/package.json +2 -2
package/README.ko.md
CHANGED
|
@@ -41,7 +41,7 @@ pnpm add @fluojs/studio
|
|
|
41
41
|
|
|
42
42
|
## 빠른 시작
|
|
43
43
|
|
|
44
|
-
Studio는 fluo CLI에서 내보낸 JSON 파일을 소비합니다. 런타임은 snapshot을 생산하고, CLI는 검사 데이터를 내보내거나 위임하며, Studio는 뷰어와 자동화 호출자가 사용할 수 있도록 snapshot을 파싱, 필터링, 보기, 렌더링하는 공개 헬퍼를 소유합니다. 지원되는 inspect artifact에는 raw snapshot,
|
|
44
|
+
Studio는 fluo CLI에서 내보낸 JSON 파일을 소비합니다. 런타임은 snapshot을 생산하고, CLI는 검사 데이터를 내보내거나 위임하며, Studio는 뷰어와 자동화 호출자가 사용할 수 있도록 snapshot을 파싱, 필터링, 보기, 렌더링하는 공개 헬퍼를 소유합니다. 지원되는 inspect artifact에는 raw snapshot, snapshot-plus-timing envelope, `fluo inspect --report`가 생성한 report artifact, legacy standalone timing diagnostics가 포함됩니다.
|
|
45
45
|
|
|
46
46
|
1. **Snapshot 내보내기**:
|
|
47
47
|
```bash
|
|
@@ -89,7 +89,7 @@ Studio는 주로 웹 애플리케이션이지만, 배포된 패키지는 도구/
|
|
|
89
89
|
| `PlatformDiagnosticIssue` | 플랫폼 오류 보고 및 수정을 위한 스키마입니다. |
|
|
90
90
|
| `parseStudioPayload(rawJson)` | raw snapshot JSON, standalone timing JSON, snapshot+timing envelope, `fluo inspect --report` artifact를 받아 parsed payload와 원본 JSON string을 반환합니다. |
|
|
91
91
|
| `ParsedPayload` | `parseStudioPayload(...)`가 반환하는 parsed Studio payload shape입니다. |
|
|
92
|
-
| `StudioPayload` |
|
|
92
|
+
| `StudioPayload` | `parseStudioPayload(...)`가 반환하는 정규화된 parsed payload envelope이며, 선택적 `report`, `snapshot`, `timing` 필드를 포함합니다. |
|
|
93
93
|
| `StudioReportArtifact` | CI/support 자동화를 위해 summary, snapshot, timing 데이터를 함께 보존한 `fluo inspect --report` artifact입니다. |
|
|
94
94
|
| `StudioReportSummary` | report artifact에 포함되는 summary block입니다. |
|
|
95
95
|
| `FilterState` | `applyFilters(...)`가 받는 filter configuration입니다. |
|
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ The published package serves two caller-facing entrypoints:
|
|
|
41
41
|
|
|
42
42
|
## Quick Start
|
|
43
43
|
|
|
44
|
-
Studio consumes JSON exports from the fluo CLI. Runtime produces snapshots, the CLI exports or delegates inspection data, and Studio owns the public helpers that parse, filter, view, and render those snapshots for viewer and automation callers. Supported inspect artifacts include raw snapshots,
|
|
44
|
+
Studio consumes JSON exports from the fluo CLI. Runtime produces snapshots, the CLI exports or delegates inspection data, and Studio owns the public helpers that parse, filter, view, and render those snapshots for viewer and automation callers. Supported inspect artifacts include raw snapshots, snapshot-plus-timing envelopes, report artifacts produced by `fluo inspect --report`, and legacy standalone timing diagnostics.
|
|
45
45
|
|
|
46
46
|
1. **Export a snapshot**:
|
|
47
47
|
```bash
|
|
@@ -89,7 +89,7 @@ Studio is primarily a web application, but the published package also exposes th
|
|
|
89
89
|
| `PlatformDiagnosticIssue` | Schema for reporting and fixing platform errors. |
|
|
90
90
|
| `parseStudioPayload(rawJson)` | Accepts raw snapshot JSON, standalone timing JSON, snapshot+timing envelopes, and `fluo inspect --report` artifacts; returns the parsed payload plus the original JSON string. |
|
|
91
91
|
| `ParsedPayload` | Parsed Studio payload shape returned by `parseStudioPayload(...)`. |
|
|
92
|
-
| `StudioPayload` |
|
|
92
|
+
| `StudioPayload` | Normalized parsed payload envelope returned by `parseStudioPayload(...)`, with optional `report`, `snapshot`, and `timing` fields. |
|
|
93
93
|
| `StudioReportArtifact` | Preserved `fluo inspect --report` artifact with summary, snapshot, and timing data for CI/support automation. |
|
|
94
94
|
| `StudioReportSummary` | Summary block included in report artifacts. |
|
|
95
95
|
| `FilterState` | Filter configuration accepted by `applyFilters(...)`. |
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"module-graph",
|
|
10
10
|
"devtools"
|
|
11
11
|
],
|
|
12
|
-
"version": "1.0.
|
|
12
|
+
"version": "1.0.2",
|
|
13
13
|
"private": false,
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dist"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@fluojs/runtime": "^1.0
|
|
44
|
+
"@fluojs/runtime": "^1.1.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"happy-dom": "^20.9.0",
|