@slidev/cli 52.4.0 → 52.5.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/cli.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { getThemeMeta, loadSetups, parser, resolveAddons, resolveOptions, resolveTheme, updateFrontmatterPatch, version } from "./shared-
|
|
1
|
+
import { getThemeMeta, loadSetups, parser, resolveAddons, resolveOptions, resolveTheme, updateFrontmatterPatch, version } from "./shared-D96LYMJ7.js";
|
|
2
2
|
import { getRoots, isInstalledGlobally, resolveEntry } from "./resolver-BVx3X6zp.js";
|
|
3
|
-
import { createServer } from "./serve-
|
|
3
|
+
import { createServer } from "./serve-Cs3_2zRA.js";
|
|
4
4
|
import { exec } from "node:child_process";
|
|
5
5
|
import fs from "node:fs/promises";
|
|
6
6
|
import os from "node:os";
|
|
@@ -292,7 +292,7 @@ cli.command("build [entry..]", "Build hostable SPA", (args) => exportOptions(com
|
|
|
292
292
|
describe: "enable the inspect plugin for debugging"
|
|
293
293
|
}).strict().help(), async (args) => {
|
|
294
294
|
const { entry, theme, base, download, out, inspect } = args;
|
|
295
|
-
const { build } = await import("./build-
|
|
295
|
+
const { build } = await import("./build-BHzsdw80.js");
|
|
296
296
|
for (const entryFile of entry) {
|
|
297
297
|
const options = await resolveOptions({
|
|
298
298
|
entry: entryFile,
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ViteSlidevPlugin, createDataUtils, parser, resolveOptions } from "./shared-
|
|
1
|
+
import { ViteSlidevPlugin, createDataUtils, parser, resolveOptions } from "./shared-D96LYMJ7.js";
|
|
2
2
|
import "./resolver-BVx3X6zp.js";
|
|
3
|
-
import { createServer } from "./serve-
|
|
3
|
+
import { createServer } from "./serve-Cs3_2zRA.js";
|
|
4
4
|
|
|
5
5
|
export { ViteSlidevPlugin, createDataUtils, createServer, parser, resolveOptions };
|
|
@@ -42,7 +42,7 @@ import Vue from "@vitejs/plugin-vue";
|
|
|
42
42
|
import VueJsx from "@vitejs/plugin-vue-jsx";
|
|
43
43
|
|
|
44
44
|
//#region package.json
|
|
45
|
-
var version = "52.
|
|
45
|
+
var version = "52.5.0";
|
|
46
46
|
|
|
47
47
|
//#endregion
|
|
48
48
|
//#region node/syntax/markdown-it/markdown-it-link.ts
|
|
@@ -2283,7 +2283,10 @@ async function createServerRefPlugin(options, pluginOptions) {
|
|
|
2283
2283
|
sync: false,
|
|
2284
2284
|
nav: {
|
|
2285
2285
|
page: 0,
|
|
2286
|
-
clicks: 0
|
|
2286
|
+
clicks: 0,
|
|
2287
|
+
timerStatus: "stopped",
|
|
2288
|
+
timerStartedAt: 0,
|
|
2289
|
+
timerPausedAt: 0
|
|
2287
2290
|
},
|
|
2288
2291
|
drawings: await loadDrawings(options),
|
|
2289
2292
|
snapshots: await loadSnapshots(options),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slidev/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "52.
|
|
4
|
+
"version": "52.5.0",
|
|
5
5
|
"description": "Presentation slides for developers",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -109,9 +109,9 @@
|
|
|
109
109
|
"vue": "^3.5.22",
|
|
110
110
|
"yaml": "^2.8.1",
|
|
111
111
|
"yargs": "^18.0.0",
|
|
112
|
-
"@slidev/client": "52.
|
|
113
|
-
"@slidev/parser": "52.
|
|
114
|
-
"@slidev/types": "52.
|
|
112
|
+
"@slidev/client": "52.5.0",
|
|
113
|
+
"@slidev/parser": "52.5.0",
|
|
114
|
+
"@slidev/types": "52.5.0"
|
|
115
115
|
},
|
|
116
116
|
"devDependencies": {
|
|
117
117
|
"@hedgedoc/markdown-it-plugins": "^2.1.4",
|