Skip to content

Commit 688e9cf

Browse files
authoredNov 10, 2024··
fix: --download option should affect getDefine (#1937)
1 parent b1f3cd4 commit 688e9cf

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
 

‎packages/slidev/node/cli.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,7 @@ cli.command(
351351
const { build } = await import('./commands/build')
352352

353353
for (const entryFile of entry as unknown as string[]) {
354-
const options = await resolveOptions({ entry: entryFile, theme, inspect }, 'build')
355-
if (download && !options.data.config.download)
356-
options.data.config.download = download
354+
const options = await resolveOptions({ entry: entryFile, theme, inspect, download }, 'build')
357355

358356
printInfo(options)
359357
await build(

‎packages/slidev/node/options.ts

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ export async function resolveOptions(
3232
const addonRoots = await resolveAddons(config.addons)
3333
const roots = uniq([...themeRoots, ...addonRoots, rootsInfo.userRoot])
3434

35+
if (entryOptions.download)
36+
config.download ||= entryOptions.download
37+
3538
debug({
3639
...rootsInfo,
3740
...entryOptions,

‎packages/types/src/options.ts

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ export interface SlidevEntryOptions {
3030
* Enable inspect plugin
3131
*/
3232
inspect?: boolean
33+
34+
/**
35+
* Build with --download option
36+
*/
37+
download?: boolean
3338
}
3439

3540
export interface ResolvedSlidevOptions extends RootsInfo, SlidevEntryOptions {

0 commit comments

Comments
 (0)
Please sign in to comment.