@typespec/playground 0.15.0-dev.5 → 0.15.1-dev.0
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/react/index.js +13 -25
- package/dist/src/react/output-view/file-viewer.d.ts +1 -5
- package/dist/src/react/output-view/file-viewer.d.ts.map +1 -1
- package/dist/src/react/output-view/output-view.d.ts +0 -4
- package/dist/src/react/output-view/output-view.d.ts.map +1 -1
- package/dist/src/react/output-view/use-file-changes.d.ts +1 -1
- package/dist/src/react/output-view/use-file-changes.d.ts.map +1 -1
- package/dist/src/react/playground.d.ts +0 -2
- package/dist/src/react/playground.d.ts.map +1 -1
- package/package.json +11 -11
package/dist/react/index.js
CHANGED
|
@@ -1983,12 +1983,11 @@ var OutputTabs = ({ filenames, selected, onSelect }) => {
|
|
|
1983
1983
|
* Tracks which output files have changed between compilations.
|
|
1984
1984
|
* Returns the set of changed file paths and a map of changed line numbers per file.
|
|
1985
1985
|
*/
|
|
1986
|
-
function useFileChanges(program, outputFiles
|
|
1986
|
+
function useFileChanges(program, outputFiles) {
|
|
1987
1987
|
const [changedFiles, setChangedFiles] = useState(/* @__PURE__ */ new Set());
|
|
1988
1988
|
const [changedLines, setChangedLines] = useState(/* @__PURE__ */ new Map());
|
|
1989
1989
|
const prevContentsRef = useRef(/* @__PURE__ */ new Map());
|
|
1990
1990
|
useEffect(() => {
|
|
1991
|
-
if (!highlightChanges) return;
|
|
1992
1991
|
let cancelled = false;
|
|
1993
1992
|
async function diffFiles() {
|
|
1994
1993
|
const changed = /* @__PURE__ */ new Set();
|
|
@@ -2024,11 +2023,7 @@ function useFileChanges(program, outputFiles, highlightChanges) {
|
|
|
2024
2023
|
return () => {
|
|
2025
2024
|
cancelled = true;
|
|
2026
2025
|
};
|
|
2027
|
-
}, [
|
|
2028
|
-
program,
|
|
2029
|
-
outputFiles,
|
|
2030
|
-
highlightChanges
|
|
2031
|
-
]);
|
|
2026
|
+
}, [program, outputFiles]);
|
|
2032
2027
|
return useMemo(() => ({
|
|
2033
2028
|
changedFiles,
|
|
2034
2029
|
changedLines
|
|
@@ -2052,10 +2047,10 @@ var output_view_module_default = {
|
|
|
2052
2047
|
};
|
|
2053
2048
|
//#endregion
|
|
2054
2049
|
//#region src/react/output-view/file-viewer.tsx
|
|
2055
|
-
var FileViewerComponent = ({ program, outputFiles, fileViewers
|
|
2050
|
+
var FileViewerComponent = ({ program, outputFiles, fileViewers }) => {
|
|
2056
2051
|
const [filename, setFilename] = useState("");
|
|
2057
2052
|
const [content, setContent] = useState("");
|
|
2058
|
-
const { changedFiles, changedLines } = useFileChanges(program, outputFiles
|
|
2053
|
+
const { changedFiles, changedLines } = useFileChanges(program, outputFiles);
|
|
2059
2054
|
const showFileTree = useMemo(() => outputFiles.some((f) => f.includes("/")) || outputFiles.length >= 3, [outputFiles]);
|
|
2060
2055
|
const loadOutputFile = useCallback(async (path) => {
|
|
2061
2056
|
setContent((await program.host.readFile("./tsp-output/" + path)).text);
|
|
@@ -2090,7 +2085,7 @@ var FileViewerComponent = ({ program, outputFiles, fileViewers, highlightChanges
|
|
|
2090
2085
|
files: outputFiles,
|
|
2091
2086
|
selected: filename,
|
|
2092
2087
|
onSelect: handleFileSelection,
|
|
2093
|
-
changedFiles
|
|
2088
|
+
changedFiles
|
|
2094
2089
|
})
|
|
2095
2090
|
}), /* @__PURE__ */ jsx(Pane, { children: /* @__PURE__ */ jsxs("div", {
|
|
2096
2091
|
className: output_view_module_default["file-viewer-content-with-breadcrumb"],
|
|
@@ -2100,7 +2095,7 @@ var FileViewerComponent = ({ program, outputFiles, fileViewers, highlightChanges
|
|
|
2100
2095
|
filename,
|
|
2101
2096
|
content,
|
|
2102
2097
|
viewers: fileViewers,
|
|
2103
|
-
changedLineNumbers:
|
|
2098
|
+
changedLineNumbers: changedLines.get(filename)
|
|
2104
2099
|
})
|
|
2105
2100
|
})]
|
|
2106
2101
|
}) })]
|
|
@@ -2118,14 +2113,13 @@ var FileViewerComponent = ({ program, outputFiles, fileViewers, highlightChanges
|
|
|
2118
2113
|
filename,
|
|
2119
2114
|
content,
|
|
2120
2115
|
viewers: fileViewers,
|
|
2121
|
-
changedLineNumbers:
|
|
2116
|
+
changedLineNumbers: changedLines.get(filename)
|
|
2122
2117
|
})
|
|
2123
2118
|
})]
|
|
2124
2119
|
});
|
|
2125
2120
|
};
|
|
2126
|
-
function createFileViewer(fileViewers
|
|
2121
|
+
function createFileViewer(fileViewers) {
|
|
2127
2122
|
const viewerMap = Object.fromEntries(fileViewers.map((x) => [x.key, x]));
|
|
2128
|
-
const highlightChanges = options?.highlightChanges ?? false;
|
|
2129
2123
|
return {
|
|
2130
2124
|
key: "file-output",
|
|
2131
2125
|
label: "Output explorer",
|
|
@@ -2133,8 +2127,7 @@ function createFileViewer(fileViewers, options) {
|
|
|
2133
2127
|
render: (props) => {
|
|
2134
2128
|
return /* @__PURE__ */ jsx(FileViewerComponent, {
|
|
2135
2129
|
...props,
|
|
2136
|
-
fileViewers: viewerMap
|
|
2137
|
-
highlightChanges
|
|
2130
|
+
fileViewers: viewerMap
|
|
2138
2131
|
});
|
|
2139
2132
|
}
|
|
2140
2133
|
};
|
|
@@ -2166,12 +2159,8 @@ var TypeGraphViewer = {
|
|
|
2166
2159
|
};
|
|
2167
2160
|
//#endregion
|
|
2168
2161
|
//#region src/react/output-view/output-view.tsx
|
|
2169
|
-
var OutputView = ({ compilationState, isCompiling, isOutputStale, viewers, fileViewers,
|
|
2170
|
-
const resolvedViewers = useMemo(() => resolveViewers(viewers, fileViewers,
|
|
2171
|
-
fileViewers,
|
|
2172
|
-
viewers,
|
|
2173
|
-
highlightChanges
|
|
2174
|
-
]);
|
|
2162
|
+
var OutputView = ({ compilationState, isCompiling, isOutputStale, viewers, fileViewers, selectedViewer, onViewerChange, viewerState, onViewerStateChange }) => {
|
|
2163
|
+
const resolvedViewers = useMemo(() => resolveViewers(viewers, fileViewers), [fileViewers, viewers]);
|
|
2175
2164
|
if (compilationState === void 0) {
|
|
2176
2165
|
if (isCompiling) return /* @__PURE__ */ jsx("div", {
|
|
2177
2166
|
className: output_view_module_default["output-compiling"],
|
|
@@ -2208,8 +2197,8 @@ var OutputView = ({ compilationState, isCompiling, isOutputStale, viewers, fileV
|
|
|
2208
2197
|
]
|
|
2209
2198
|
});
|
|
2210
2199
|
};
|
|
2211
|
-
function resolveViewers(viewers, fileViewers
|
|
2212
|
-
const fileViewer = createFileViewer(fileViewers ?? []
|
|
2200
|
+
function resolveViewers(viewers, fileViewers) {
|
|
2201
|
+
const fileViewer = createFileViewer(fileViewers ?? []);
|
|
2213
2202
|
const output = { programViewers: {
|
|
2214
2203
|
[fileViewer.key]: fileViewer,
|
|
2215
2204
|
[TypeGraphViewer.key]: TypeGraphViewer
|
|
@@ -2781,7 +2770,6 @@ var Playground = (props) => {
|
|
|
2781
2770
|
editorOptions: props.editorOptions,
|
|
2782
2771
|
viewers: props.viewers,
|
|
2783
2772
|
fileViewers: selectedEmitter ? props.emitterViewers?.[selectedEmitter] : void 0,
|
|
2784
|
-
highlightChanges: currentEmitterOptions?.newChangeDiff ?? true,
|
|
2785
2773
|
selectedViewer,
|
|
2786
2774
|
onViewerChange: onSelectedViewerChange,
|
|
2787
2775
|
viewerState,
|
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import { FileOutputViewer, ProgramViewer } from '../types.js';
|
|
2
|
-
export
|
|
3
|
-
/** When true, highlights changed files in the tree and changed lines in the editor after recompilation. */
|
|
4
|
-
highlightChanges?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function createFileViewer(fileViewers: FileOutputViewer[], options?: FileViewerOptions): ProgramViewer;
|
|
2
|
+
export declare function createFileViewer(fileViewers: FileOutputViewer[]): ProgramViewer;
|
|
7
3
|
//# sourceMappingURL=file-viewer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-viewer.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/file-viewer.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,gBAAgB,EAAqB,aAAa,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"file-viewer.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/file-viewer.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,gBAAgB,EAAqB,aAAa,EAAE,MAAM,aAAa,CAAC;AAoGtF,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,gBAAgB,EAAE,GAAG,aAAa,CAU/E"}
|
|
@@ -12,10 +12,6 @@ export interface OutputViewProps {
|
|
|
12
12
|
*/
|
|
13
13
|
viewers?: ProgramViewer[];
|
|
14
14
|
fileViewers?: FileOutputViewer[];
|
|
15
|
-
/**
|
|
16
|
-
* When true, highlights changed files and lines after recompilation.
|
|
17
|
-
*/
|
|
18
|
-
highlightChanges?: boolean;
|
|
19
15
|
/**
|
|
20
16
|
* The currently selected viewer key.
|
|
21
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output-view.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/output-view.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAkC,KAAK,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE/E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAiB,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAMpG,MAAM,WAAW,eAAe;IAC9B,gBAAgB,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC/C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,iFAAiF;IACjF,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,wBAAwB,CAAC;IACzC;;OAEG;IACH,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAC1B,WAAW,CAAC,EAAE,gBAAgB,EAAE,CAAC;IACjC;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"output-view.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/output-view.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAkC,KAAK,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE/E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAiB,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAMpG,MAAM,WAAW,eAAe;IAC9B,gBAAgB,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC/C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,iFAAiF;IACjF,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,wBAAwB,CAAC;IACzC;;OAEG;IACH,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAC1B,WAAW,CAAC,EAAE,gBAAgB,EAAE,CAAC;IACjC;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC;;OAEG;IACH,mBAAmB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;CAC5D;AAED,eAAO,MAAM,UAAU,EAAE,iBAAiB,CAAC,eAAe,CAmDzD,CAAC"}
|
|
@@ -7,5 +7,5 @@ export interface FileChanges {
|
|
|
7
7
|
* Tracks which output files have changed between compilations.
|
|
8
8
|
* Returns the set of changed file paths and a map of changed line numbers per file.
|
|
9
9
|
*/
|
|
10
|
-
export declare function useFileChanges(program: CompileResult["program"], outputFiles: string[]
|
|
10
|
+
export declare function useFileChanges(program: CompileResult["program"], outputFiles: string[]): FileChanges;
|
|
11
11
|
//# sourceMappingURL=use-file-changes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-file-changes.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/use-file-changes.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAEjD,MAAM,WAAW,WAAW;IAC1B,YAAY,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC1B,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;CACrC;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,EACjC,WAAW,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"use-file-changes.d.ts","sourceRoot":"","sources":["../../../../src/react/output-view/use-file-changes.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAEjD,MAAM,WAAW,WAAW;IAC1B,YAAY,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC1B,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;CACrC;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,EACjC,WAAW,EAAE,MAAM,EAAE,GACpB,WAAW,CA6Db"}
|
|
@@ -7,8 +7,6 @@ export type { PlaygroundState };
|
|
|
7
7
|
export interface PlaygroundEmitterOptions {
|
|
8
8
|
/** Compile debounce delay in milliseconds. Default is 200. */
|
|
9
9
|
debounce?: number;
|
|
10
|
-
/** When true, highlights changed files and lines after recompilation. */
|
|
11
|
-
newChangeDiff?: boolean;
|
|
12
10
|
}
|
|
13
11
|
export interface PlaygroundProps {
|
|
14
12
|
host: BrowserHost;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playground.d.ts","sourceRoot":"","sources":["../../../src/react/playground.tsx"],"names":[],"mappings":"AAGA,OAAO,sCAAsC,CAAC;AAG9C,OAAO,EAML,KAAK,iBAAiB,EACtB,KAAK,SAAS,EACf,MAAM,OAAO,CAAC;AAKf,OAAO,KAAK,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AASjE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,KAAK,EAAoB,gBAAgB,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEpF,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAIrF,YAAY,EAAE,eAAe,EAAE,CAAC;AAEhC,MAAM,WAAW,wBAAwB;IACvC,8DAA8D;IAC9D,QAAQ,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"playground.d.ts","sourceRoot":"","sources":["../../../src/react/playground.tsx"],"names":[],"mappings":"AAGA,OAAO,sCAAsC,CAAC;AAG9C,OAAO,EAML,KAAK,iBAAiB,EACtB,KAAK,SAAS,EACf,MAAM,OAAO,CAAC;AAKf,OAAO,KAAK,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AASjE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,KAAK,EAAoB,gBAAgB,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEpF,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAIrF,YAAY,EAAE,eAAe,EAAE,CAAC;AAEhC,MAAM,WAAW,wBAAwB;IACvC,8DAA8D;IAC9D,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,WAAW,CAAC;IAElB,iDAAiD;IACjD,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,kCAAkC;IAClC,QAAQ,CAAC,SAAS,EAAE,SAAS,MAAM,EAAE,CAAC;IAEtC,wBAAwB;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAE3C,oCAAoC;IACpC,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,yDAAyD;IACzD,sBAAsB,CAAC,EAAE,eAAe,CAAC;IACzC,6CAA6C;IAC7C,uBAAuB,CAAC,EAAE,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,CAAC;IAE3D;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IAEvB,mDAAmD;IACnD,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IAEnC,kDAAkD;IAClD,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAE1B,4FAA4F;IAC5F,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;IAEpD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAC;IAE1D,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAE7C,aAAa,CAAC,EAAE,wBAAwB,CAAC;IAEzC;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,kBAAmB,SAAQ,eAAe;IACzD,2CAA2C;IAC3C,OAAO,EAAE,MAAM,CAAC;IAEhB,oBAAoB;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,eAAO,MAAM,UAAU,EAAE,iBAAiB,CAAC,eAAe,CAoWzD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/playground",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1-dev.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec playground UI components.",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -61,15 +61,15 @@
|
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@fluentui/react-components": "^9.73.7",
|
|
63
63
|
"@fluentui/react-icons": "^2.0.323",
|
|
64
|
-
"@typespec/bundler": "^0.
|
|
65
|
-
"@typespec/compiler": "^1.
|
|
66
|
-
"@typespec/html-program-viewer": "^0.
|
|
67
|
-
"@typespec/http": "^1.
|
|
68
|
-
"@typespec/openapi": "^1.
|
|
69
|
-
"@typespec/openapi3": "^1.
|
|
70
|
-
"@typespec/protobuf": "^0.
|
|
71
|
-
"@typespec/rest": "^0.
|
|
72
|
-
"@typespec/versioning": "^0.
|
|
64
|
+
"@typespec/bundler": "^0.6.0 || >= 0.6.1-dev.0",
|
|
65
|
+
"@typespec/compiler": "^1.12.0 || >= 1.13.0-dev.0",
|
|
66
|
+
"@typespec/html-program-viewer": "^0.82.0 || >= 0.83.0-dev.0",
|
|
67
|
+
"@typespec/http": "^1.12.0 || >= 1.13.0-dev.0",
|
|
68
|
+
"@typespec/openapi": "^1.12.0 || >= 1.13.0-dev.0",
|
|
69
|
+
"@typespec/openapi3": "^1.12.0 || >= 1.13.0-dev.0",
|
|
70
|
+
"@typespec/protobuf": "^0.82.0 || >= 0.83.0-dev.0",
|
|
71
|
+
"@typespec/rest": "^0.82.0 || >= 0.83.0-dev.0",
|
|
72
|
+
"@typespec/versioning": "^0.82.0 || >= 0.83.0-dev.0",
|
|
73
73
|
"clsx": "^2.1.1",
|
|
74
74
|
"debounce": "^3.0.0",
|
|
75
75
|
"lzutf8": "0.6.3",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"@types/react": "^19.2.14",
|
|
96
96
|
"@types/react-dom": "^19.2.3",
|
|
97
97
|
"@types/swagger-ui-dist": "^3.30.6",
|
|
98
|
-
"@typespec/bundler": "^0.
|
|
98
|
+
"@typespec/bundler": "^0.6.0 || >= 0.6.1-dev.0",
|
|
99
99
|
"@vitejs/plugin-react": "^6.0.1",
|
|
100
100
|
"cross-env": "^10.1.0",
|
|
101
101
|
"es-module-shims": "^2.8.0",
|