@slidev/cli 0.49.0-beta.3 → 0.49.0-beta.5
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.md +1 -1
- package/dist/{build-IFALC6GJ.mjs → build-Q2ZQYXZS.mjs} +3 -3
- package/dist/{chunk-KUKH6IFA.mjs → chunk-DUS7IVGJ.mjs} +3 -3
- package/dist/{chunk-Y6VNORK4.mjs → chunk-NOHNQKED.mjs} +529 -449
- package/dist/{chunk-AQQIBD5X.mjs → chunk-W3YEGN62.mjs} +13 -10
- package/dist/cli.mjs +8 -8
- package/dist/{export-OGDZIGG2.mjs → export-SAGFIALP.mjs} +1 -1
- package/dist/index.mjs +3 -3
- package/package.json +24 -24
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ For a full example, you can check the [demo](https://github.com/slidevjs/slidev/
|
|
|
79
79
|
- [Vite](https://vitejs.dev) - An extremely fast frontend tooling
|
|
80
80
|
- [Vue 3](https://v3.vuejs.org/) powered [Markdown](https://daringfireball.net/projects/markdown/syntax) - Focus on the content while having the power of HTML and Vue components whenever needed
|
|
81
81
|
- [UnoCSS](https://github.com/unocss/unocss) - On-demand utility-first CSS engine, style your slides at ease
|
|
82
|
-
- [
|
|
82
|
+
- [Shiki](https://github.com/shikijs/shiki), [Monaco Editor](https://github.com/Microsoft/monaco-editor) - First-class code snippets support with live coding capability
|
|
83
83
|
- [RecordRTC](https://recordrtc.org) - Built-in recording and camera view
|
|
84
84
|
- [VueUse](https://vueuse.org) family - [`@vueuse/core`](https://github.com/vueuse/vueuse), [`@vueuse/motion`](https://github.com/vueuse/motion), etc.
|
|
85
85
|
- [Iconify](https://iconify.design/) - Iconsets collection.
|
|
@@ -2,9 +2,9 @@ import {
|
|
|
2
2
|
ViteSlidevPlugin,
|
|
3
3
|
getIndexHtml,
|
|
4
4
|
mergeViteConfigs
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-NOHNQKED.mjs";
|
|
6
6
|
import "./chunk-LOUKLO2C.mjs";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-W3YEGN62.mjs";
|
|
8
8
|
import "./chunk-BXO7ZPPU.mjs";
|
|
9
9
|
|
|
10
10
|
// node/commands/build.ts
|
|
@@ -63,7 +63,7 @@ async function build(options, viteConfig = {}, args) {
|
|
|
63
63
|
await fs.writeFile(redirectsPath, `${config.base}* ${config.base}index.html 200
|
|
64
64
|
`, "utf-8");
|
|
65
65
|
if ([true, "true", "auto"].includes(options.data.config.download)) {
|
|
66
|
-
const { exportSlides, getExportOptions } = await import("./export-
|
|
66
|
+
const { exportSlides, getExportOptions } = await import("./export-SAGFIALP.mjs");
|
|
67
67
|
const port = 12445;
|
|
68
68
|
const app = connect();
|
|
69
69
|
const server = http.createServer(app);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ViteSlidevPlugin,
|
|
3
3
|
mergeViteConfigs
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-NOHNQKED.mjs";
|
|
5
5
|
import {
|
|
6
6
|
createResolver,
|
|
7
7
|
getRoots,
|
|
8
8
|
resolveEntry
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-W3YEGN62.mjs";
|
|
10
10
|
|
|
11
11
|
// node/commands/server.ts
|
|
12
12
|
import { join } from "node:path";
|
|
@@ -48,7 +48,7 @@ async function createServer(options, viteConfig = {}, serverOptions = {}) {
|
|
|
48
48
|
import * as parser from "@slidev/parser/fs";
|
|
49
49
|
|
|
50
50
|
// package.json
|
|
51
|
-
var version = "0.49.0-beta.
|
|
51
|
+
var version = "0.49.0-beta.5";
|
|
52
52
|
|
|
53
53
|
// node/integrations/themes.ts
|
|
54
54
|
import { join as join2 } from "node:path";
|