@tscircuit/cli 0.1.614 → 0.1.615
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/main.js +4 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -74282,6 +74282,7 @@ var getIndex = async (mainComponentPath, fileServerApiBaseUrl) => {
|
|
|
74282
74282
|
window.TSCIRCUIT_FILESERVER_API_BASE_URL = ${JSON.stringify(fileServerApiBaseUrl)};` : "";
|
|
74283
74283
|
return `<html>
|
|
74284
74284
|
<head>
|
|
74285
|
+
<meta charset="UTF-8" />
|
|
74285
74286
|
<link rel="icon" type="image/png" href="https://github.com/tscircuit.png">
|
|
74286
74287
|
</head>
|
|
74287
74288
|
<body>
|
|
@@ -74294,7 +74295,7 @@ var getIndex = async (mainComponentPath, fileServerApiBaseUrl) => {
|
|
|
74294
74295
|
<script>
|
|
74295
74296
|
globalThis.process = { env: { NODE_ENV: "production" } }
|
|
74296
74297
|
</script>
|
|
74297
|
-
<script src="/standalone.min.js"></script>
|
|
74298
|
+
<script type="module" src="/standalone.min.js"></script>
|
|
74298
74299
|
</body>
|
|
74299
74300
|
</html>`;
|
|
74300
74301
|
};
|
|
@@ -183210,6 +183211,7 @@ var getStaticIndexHtmlFile = ({
|
|
|
183210
183211
|
`;
|
|
183211
183212
|
return `<html>
|
|
183212
183213
|
<head>
|
|
183214
|
+
<meta charset="UTF-8" />
|
|
183213
183215
|
</head>
|
|
183214
183216
|
<body>
|
|
183215
183217
|
${scriptBlock} <script src="https://cdn.tailwindcss.com"></script>
|
|
@@ -183217,7 +183219,7 @@ ${scriptBlock} <script src="https://cdn.tailwindcss.com"></script>
|
|
|
183217
183219
|
<script>
|
|
183218
183220
|
globalThis.process = { env: { NODE_ENV: "production" } }
|
|
183219
183221
|
</script>
|
|
183220
|
-
<script src="${standaloneScriptSrc}"></script>
|
|
183222
|
+
<script type="module" src="${standaloneScriptSrc}"></script>
|
|
183221
183223
|
</body>
|
|
183222
183224
|
</html>`;
|
|
183223
183225
|
};
|