@slidev/cli 0.43.0-beta.7 → 0.43.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.
|
@@ -2519,7 +2519,7 @@ async function createServer(options, viteConfig = {}, serverOptions = {}) {
|
|
|
2519
2519
|
import * as parser from "@slidev/parser/fs";
|
|
2520
2520
|
|
|
2521
2521
|
// package.json
|
|
2522
|
-
var version = "0.43.0
|
|
2522
|
+
var version = "0.43.0";
|
|
2523
2523
|
|
|
2524
2524
|
// node/themes.ts
|
|
2525
2525
|
import prompts2 from "prompts";
|
|
@@ -2519,7 +2519,7 @@ async function createServer(options, viteConfig = {}, serverOptions = {}) {
|
|
|
2519
2519
|
var _fs = require('@slidev/parser/fs'); var parser = _interopRequireWildcard(_fs);
|
|
2520
2520
|
|
|
2521
2521
|
// package.json
|
|
2522
|
-
var version = "0.43.0
|
|
2522
|
+
var version = "0.43.0";
|
|
2523
2523
|
|
|
2524
2524
|
// node/themes.ts
|
|
2525
2525
|
var _prompts = require('prompts'); var _prompts2 = _interopRequireDefault(_prompts);
|
package/dist/cli.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkUKVDFR2Jjs = require('./chunk-UKVDFR2J.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
var _chunkN7DPKF7Ljs = require('./chunk-N7DPKF7L.js');
|
|
@@ -51,15 +51,15 @@ _fs.injectPreparserExtensionLoader.call(void 0, async (headmatter, filepath) =>
|
|
|
51
51
|
const roots = (
|
|
52
52
|
/* uniq */
|
|
53
53
|
[
|
|
54
|
-
|
|
55
|
-
...
|
|
56
|
-
|
|
54
|
+
_chunkUKVDFR2Jjs.getUserRoot.call(void 0, {}).userRoot,
|
|
55
|
+
..._chunkUKVDFR2Jjs.getAddonRoots.call(void 0, addons, ""),
|
|
56
|
+
_chunkUKVDFR2Jjs.getClientRoot.call(void 0, )
|
|
57
57
|
]
|
|
58
58
|
);
|
|
59
59
|
const mergeArrays = (a, b) => a.concat(b);
|
|
60
60
|
return await _chunkKKGXM3XLjs.loadSetups.call(void 0, roots, "preparser.ts", { filepath, headmatter }, [], false, mergeArrays);
|
|
61
61
|
});
|
|
62
|
-
var cli = _yargs2.default.scriptName("slidev").usage("$0 [args]").version(
|
|
62
|
+
var cli = _yargs2.default.scriptName("slidev").usage("$0 [args]").version(_chunkUKVDFR2Jjs.version).strict().showHelpOnFail(false).alias("h", "help").alias("v", "version");
|
|
63
63
|
cli.command(
|
|
64
64
|
"* [entry]",
|
|
65
65
|
"Start a local server for Slidev",
|
|
@@ -115,9 +115,9 @@ cli.command(
|
|
|
115
115
|
async function initServer() {
|
|
116
116
|
if (server)
|
|
117
117
|
await server.close();
|
|
118
|
-
const options = await
|
|
118
|
+
const options = await _chunkUKVDFR2Jjs.resolveOptions.call(void 0, { entry, remote, theme, inspect }, "dev");
|
|
119
119
|
port = userPort || await findFreePort(3030);
|
|
120
|
-
server = await
|
|
120
|
+
server = await _chunkUKVDFR2Jjs.createServer.call(void 0,
|
|
121
121
|
options,
|
|
122
122
|
{
|
|
123
123
|
server: {
|
|
@@ -131,7 +131,7 @@ cli.command(
|
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
onDataReload(newData, data) {
|
|
134
|
-
if (!theme &&
|
|
134
|
+
if (!theme && _chunkUKVDFR2Jjs.resolveThemeName.call(void 0, newData.config.theme) !== _chunkUKVDFR2Jjs.resolveThemeName.call(void 0, data.config.theme)) {
|
|
135
135
|
console.log(_kolorist.yellow.call(void 0, "\n restarting on theme change\n"));
|
|
136
136
|
initServer();
|
|
137
137
|
} else if (CONFIG_RESTART_FIELDS.some((i) => !(0, import_fast_deep_equal.default)(newData.config[i], data.config[i]))) {
|
|
@@ -262,7 +262,7 @@ cli.command(
|
|
|
262
262
|
const { entry, theme, watch, base, download, out, inspect } = args;
|
|
263
263
|
const { build } = await Promise.resolve().then(() => require("./build-HRQ6PECB.js"));
|
|
264
264
|
for (const entryFile of entry) {
|
|
265
|
-
const options = await
|
|
265
|
+
const options = await _chunkUKVDFR2Jjs.resolveOptions.call(void 0, { entry: entryFile, theme, inspect }, "build");
|
|
266
266
|
if (download && !options.data.config.download)
|
|
267
267
|
options.data.config.download = download;
|
|
268
268
|
printInfo(options);
|
|
@@ -282,9 +282,9 @@ cli.command(
|
|
|
282
282
|
(args) => commonOptions(args).strict().help(),
|
|
283
283
|
async ({ entry }) => {
|
|
284
284
|
for (const entryFile of entry) {
|
|
285
|
-
const data = await
|
|
286
|
-
|
|
287
|
-
await
|
|
285
|
+
const data = await _chunkUKVDFR2Jjs.parser.load(entryFile);
|
|
286
|
+
_chunkUKVDFR2Jjs.parser.prettify(data);
|
|
287
|
+
await _chunkUKVDFR2Jjs.parser.save(data);
|
|
288
288
|
}
|
|
289
289
|
}
|
|
290
290
|
);
|
|
@@ -300,17 +300,17 @@ cli.command(
|
|
|
300
300
|
default: "theme"
|
|
301
301
|
}),
|
|
302
302
|
async ({ entry, dir, theme: themeInput }) => {
|
|
303
|
-
const data = await
|
|
304
|
-
const theme =
|
|
303
|
+
const data = await _chunkUKVDFR2Jjs.parser.load(entry);
|
|
304
|
+
const theme = _chunkUKVDFR2Jjs.resolveThemeName.call(void 0, themeInput || data.config.theme);
|
|
305
305
|
if (theme === "none") {
|
|
306
306
|
console.error('Cannot eject theme "none"');
|
|
307
307
|
_process2.default.exit(1);
|
|
308
308
|
}
|
|
309
|
-
if (
|
|
309
|
+
if (_chunkUKVDFR2Jjs.isPath.call(void 0, theme)) {
|
|
310
310
|
console.error("Theme is already ejected");
|
|
311
311
|
_process2.default.exit(1);
|
|
312
312
|
}
|
|
313
|
-
const roots =
|
|
313
|
+
const roots = _chunkUKVDFR2Jjs.getThemeRoots.call(void 0, theme, entry);
|
|
314
314
|
if (!roots.length) {
|
|
315
315
|
console.error(`Could not find theme "${theme}"`);
|
|
316
316
|
_process2.default.exit(1);
|
|
@@ -322,7 +322,7 @@ cli.command(
|
|
|
322
322
|
const dirPath = `./${dir}`;
|
|
323
323
|
data.slides[0].frontmatter.theme = dirPath;
|
|
324
324
|
data.slides[0].raw = null;
|
|
325
|
-
await
|
|
325
|
+
await _chunkUKVDFR2Jjs.parser.save(data);
|
|
326
326
|
console.log(`Theme "${theme}" ejected successfully to "${dirPath}"`);
|
|
327
327
|
}
|
|
328
328
|
);
|
|
@@ -342,8 +342,8 @@ cli.command(
|
|
|
342
342
|
const { exportSlides, getExportOptions } = await Promise.resolve().then(() => require("./export-MCALG7XD.js"));
|
|
343
343
|
const port = await findFreePort(12445);
|
|
344
344
|
for (const entryFile of entry) {
|
|
345
|
-
const options = await
|
|
346
|
-
const server = await
|
|
345
|
+
const options = await _chunkUKVDFR2Jjs.resolveOptions.call(void 0, { entry: entryFile, theme }, "export");
|
|
346
|
+
const server = await _chunkUKVDFR2Jjs.createServer.call(void 0,
|
|
347
347
|
options,
|
|
348
348
|
{
|
|
349
349
|
server: { port },
|
|
@@ -352,7 +352,7 @@ cli.command(
|
|
|
352
352
|
);
|
|
353
353
|
await server.listen(port);
|
|
354
354
|
printInfo(options);
|
|
355
|
-
|
|
355
|
+
_chunkUKVDFR2Jjs.parser.filterDisabled(options.data);
|
|
356
356
|
const result = await exportSlides({
|
|
357
357
|
port,
|
|
358
358
|
...getExportOptions({ ...args, entry: entryFile }, options)
|
|
@@ -388,8 +388,8 @@ cli.command(
|
|
|
388
388
|
const { exportNotes } = await Promise.resolve().then(() => require("./export-MCALG7XD.js"));
|
|
389
389
|
const port = await findFreePort(12445);
|
|
390
390
|
for (const entryFile of entry) {
|
|
391
|
-
const options = await
|
|
392
|
-
const server = await
|
|
391
|
+
const options = await _chunkUKVDFR2Jjs.resolveOptions.call(void 0, { entry: entryFile }, "export");
|
|
392
|
+
const server = await _chunkUKVDFR2Jjs.createServer.call(void 0,
|
|
393
393
|
options,
|
|
394
394
|
{
|
|
395
395
|
server: { port },
|
|
@@ -398,7 +398,7 @@ cli.command(
|
|
|
398
398
|
);
|
|
399
399
|
await server.listen(port);
|
|
400
400
|
printInfo(options);
|
|
401
|
-
|
|
401
|
+
_chunkUKVDFR2Jjs.parser.filterDisabled(options.data);
|
|
402
402
|
const result = await exportNotes({
|
|
403
403
|
port,
|
|
404
404
|
output: output || (options.data.config.exportFilename ? `${options.data.config.exportFilename}-notes` : `${_path2.default.basename(entryFile, ".md")}-export-notes`),
|
|
@@ -459,7 +459,7 @@ function printInfo(options, port, remote, tunnelUrl) {
|
|
|
459
459
|
console.log();
|
|
460
460
|
console.log();
|
|
461
461
|
console.log(` ${_kolorist.cyan.call(void 0, "\u25CF") + _kolorist.blue.call(void 0, "\u25A0") + _kolorist.yellow.call(void 0, "\u25B2")}`);
|
|
462
|
-
console.log(`${_kolorist.bold.call(void 0, " Slidev")} ${_kolorist.blue.call(void 0, `v${
|
|
462
|
+
console.log(`${_kolorist.bold.call(void 0, " Slidev")} ${_kolorist.blue.call(void 0, `v${_chunkUKVDFR2Jjs.version}`)} ${_isinstalledglobally2.default ? _kolorist.yellow.call(void 0, "(global)") : ""}`);
|
|
463
463
|
console.log();
|
|
464
464
|
_parser.verifyConfig.call(void 0, options.data.config, options.data.themeMeta, (v) => console.warn(_kolorist.yellow.call(void 0, ` ! ${v}`)));
|
|
465
465
|
console.log(_kolorist.dim.call(void 0, " theme ") + (options.theme ? _kolorist.green.call(void 0, options.theme) : _kolorist.gray.call(void 0, "none")));
|
package/dist/cli.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkUKVDFR2Jjs = require('./chunk-UKVDFR2J.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
var _chunkJ7PXWEZ7js = require('./chunk-J7PXWEZ7.js');
|
|
@@ -32,4 +32,4 @@ require('./chunk-YUG22S6W.js');
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
exports.ViteSlidevPlugin = _chunkN7DPKF7Ljs.ViteSlidevPlugin; exports.createServer =
|
|
35
|
+
exports.ViteSlidevPlugin = _chunkN7DPKF7Ljs.ViteSlidevPlugin; exports.createServer = _chunkUKVDFR2Jjs.createServer; exports.createWindiCSSPlugin = _chunkJ7PXWEZ7js.createWindiCSSPlugin; exports.getAddonRoots = _chunkUKVDFR2Jjs.getAddonRoots; exports.getCLIRoot = _chunkUKVDFR2Jjs.getCLIRoot; exports.getClientRoot = _chunkUKVDFR2Jjs.getClientRoot; exports.getRoot = _chunkUKVDFR2Jjs.getRoot; exports.getThemeRoots = _chunkUKVDFR2Jjs.getThemeRoots; exports.getUserRoot = _chunkUKVDFR2Jjs.getUserRoot; exports.isPath = _chunkUKVDFR2Jjs.isPath; exports.parser = _chunkUKVDFR2Jjs.parser; exports.resolveOptions = _chunkUKVDFR2Jjs.resolveOptions;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slidev/cli",
|
|
3
|
-
"version": "0.43.0
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"description": "Presentation slides for developers",
|
|
5
5
|
"author": "antfu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
"vue": "^3.3.4",
|
|
99
99
|
"windicss": "^3.5.6",
|
|
100
100
|
"yargs": "^17.7.2",
|
|
101
|
-
"@slidev/client": "0.43.0
|
|
102
|
-
"@slidev/parser": "0.43.0
|
|
103
|
-
"@slidev/types": "0.43.0
|
|
101
|
+
"@slidev/client": "0.43.0",
|
|
102
|
+
"@slidev/parser": "0.43.0",
|
|
103
|
+
"@slidev/types": "0.43.0"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@types/plantuml-encoder": "^1.4.0",
|