replicas-cli 0.2.490 → 0.2.492
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.mjs +20 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8044,14 +8044,33 @@ var MAX_CANVAS_PREVIEW_BYTES = 5 * 1024 * 1024;
|
|
|
8044
8044
|
var CANVAS_KIND_BY_EXTENSION = {
|
|
8045
8045
|
".md": { kind: "markdown", mimeType: "text/markdown; charset=utf-8" },
|
|
8046
8046
|
".markdown": { kind: "markdown", mimeType: "text/markdown; charset=utf-8" },
|
|
8047
|
+
".mmd": { kind: "mermaid", mimeType: "text/plain; charset=utf-8" },
|
|
8048
|
+
".mermaid": { kind: "mermaid", mimeType: "text/plain; charset=utf-8" },
|
|
8047
8049
|
".html": { kind: "html", mimeType: "text/html; charset=utf-8" },
|
|
8048
8050
|
".htm": { kind: "html", mimeType: "text/html; charset=utf-8" },
|
|
8051
|
+
".txt": { kind: "text", mimeType: "text/plain; charset=utf-8" },
|
|
8052
|
+
".log": { kind: "text", mimeType: "text/plain; charset=utf-8" },
|
|
8053
|
+
".csv": { kind: "text", mimeType: "text/csv; charset=utf-8" },
|
|
8054
|
+
".tsv": { kind: "text", mimeType: "text/tab-separated-values; charset=utf-8" },
|
|
8055
|
+
".json": { kind: "text", mimeType: "application/json; charset=utf-8" },
|
|
8056
|
+
".json5": { kind: "text", mimeType: "application/json5; charset=utf-8" },
|
|
8057
|
+
".yaml": { kind: "text", mimeType: "application/yaml; charset=utf-8" },
|
|
8058
|
+
".yml": { kind: "text", mimeType: "application/yaml; charset=utf-8" },
|
|
8059
|
+
".toml": { kind: "text", mimeType: "application/toml; charset=utf-8" },
|
|
8060
|
+
".ini": { kind: "text", mimeType: "text/plain; charset=utf-8" },
|
|
8061
|
+
".xml": { kind: "text", mimeType: "application/xml; charset=utf-8" },
|
|
8049
8062
|
".png": { kind: "image", mimeType: "image/png" },
|
|
8063
|
+
".apng": { kind: "image", mimeType: "image/apng" },
|
|
8064
|
+
".avif": { kind: "image", mimeType: "image/avif" },
|
|
8065
|
+
".bmp": { kind: "image", mimeType: "image/bmp" },
|
|
8066
|
+
".ico": { kind: "image", mimeType: "image/x-icon" },
|
|
8050
8067
|
".jpg": { kind: "image", mimeType: "image/jpeg" },
|
|
8051
8068
|
".jpeg": { kind: "image", mimeType: "image/jpeg" },
|
|
8069
|
+
".jfif": { kind: "image", mimeType: "image/jpeg" },
|
|
8052
8070
|
".gif": { kind: "image", mimeType: "image/gif" },
|
|
8053
8071
|
".webp": { kind: "image", mimeType: "image/webp" },
|
|
8054
8072
|
".svg": { kind: "image", mimeType: "image/svg+xml" },
|
|
8073
|
+
".pdf": { kind: "pdf", mimeType: "application/pdf" },
|
|
8055
8074
|
".mp4": { kind: "video", mimeType: "video/mp4" },
|
|
8056
8075
|
".webm": { kind: "video", mimeType: "video/webm" },
|
|
8057
8076
|
".mov": { kind: "video", mimeType: "video/quicktime" },
|
|
@@ -10142,7 +10161,7 @@ function formatTurnElapsed(ms) {
|
|
|
10142
10161
|
}
|
|
10143
10162
|
|
|
10144
10163
|
// ../shared/src/cli-version.ts
|
|
10145
|
-
var CLI_VERSION = "0.2.
|
|
10164
|
+
var CLI_VERSION = "0.2.492";
|
|
10146
10165
|
|
|
10147
10166
|
// ../shared/src/version.ts
|
|
10148
10167
|
function compareVersions(v1, v2) {
|