From a0d07a373bad695697bb0446eb37b46e20dd60c6 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 4 Oct 2022 08:47:43 +0800 Subject: [PATCH] perf(cli): code split documents (#11111) --- .../vant-cli/src/compiler/gen-site-desktop-shared.ts | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/packages/vant-cli/src/compiler/gen-site-desktop-shared.ts b/packages/vant-cli/src/compiler/gen-site-desktop-shared.ts index c37375639..d9214eeae 100644 --- a/packages/vant-cli/src/compiler/gen-site-desktop-shared.ts +++ b/packages/vant-cli/src/compiler/gen-site-desktop-shared.ts @@ -1,12 +1,7 @@ import glob from 'fast-glob'; import { join, parse } from 'path'; import { existsSync, readFileSync, readdirSync } from 'fs'; -import { - isDev, - pascalize, - getVantConfig, - normalizePath, -} from '../common/index.js'; +import { pascalize, getVantConfig, normalizePath } from '../common/index.js'; import { SRC_DIR, DOCS_DIR, @@ -80,10 +75,7 @@ function genImportDocuments(items: DocumentItem[]) { return items .map((item) => { const path = normalizePath(item.path); - if (isDev()) { - return `const ${item.name} = () => import('${path}');`; - } - return `import ${item.name} from '${path}';`; + return `const ${item.name} = () => import('${path}');`; }) .join('\n'); }