refactor(@vant/cli): migrate to ESM package

This commit is contained in:
chenjiahan 2021-10-28 11:48:11 +08:00 committed by neverland
parent eec2ac4c0f
commit 1b45f38133
50 changed files with 255 additions and 196 deletions

View File

@ -1,2 +1,2 @@
#!/usr/bin/env node #!/usr/bin/env node
require('./lib/cli'); import './lib/cli.js';

View File

@ -4,13 +4,13 @@
* see: https://github.com/babel/babel-loader/pull/738 * see: https://github.com/babel/babel-loader/pull/738
*/ */
import { readFileSync } from 'fs'; const { readFileSync } = require('fs');
import { declare } from '@babel/helper-plugin-utils'; const { declare } = require('@babel/helper-plugin-utils');
module.exports = declare(() => ({ module.exports = declare(() => ({
overrides: [ overrides: [
{ {
test: (filePath: string) => { test: (filePath) => {
if (/\.vue$/.test(filePath)) { if (/\.vue$/.test(filePath)) {
const template = readFileSync(filePath, { encoding: 'utf8' }); const template = readFileSync(filePath, { encoding: 'utf8' });
return ( return (

View File

@ -1,11 +1,4 @@
import { ConfigAPI } from '@babel/core'; module.exports = function (api, options) {
type PresetOption = {
loose?: boolean;
enableObjectSlots?: boolean;
};
module.exports = function (api?: ConfigAPI, options: PresetOption = {}) {
if (api) { if (api) {
api.cache.never(); api.cache.never();
} }
@ -24,7 +17,7 @@ module.exports = function (api?: ConfigAPI, options: PresetOption = {}) {
}, },
], ],
require.resolve('@babel/preset-typescript'), require.resolve('@babel/preset-typescript'),
require('../compiler/babel-preset-vue-ts'), require('./babel-preset-vue-ts.cjs'),
], ],
plugins: [ plugins: [
[ [
@ -36,5 +29,3 @@ module.exports = function (api?: ConfigAPI, options: PresetOption = {}) {
], ],
}; };
}; };
export default module.exports;

View File

@ -1,17 +1,17 @@
import { join } from 'path'; const { join } = require('path');
import { existsSync } from 'fs-extra'; const { existsSync } = require('fs');
import { const { ROOT } = require('./shared.cjs');
ROOT,
JEST_SETUP_FILE, const JEST_SETUP_FILE = join(__dirname, 'jest.setup.cjs');
JEST_FILE_MOCK_FILE, const JEST_FILE_MOCK_FILE = join(__dirname, 'jest.file-mock.cjs');
JEST_STYLE_MOCK_FILE, const JEST_STYLE_MOCK_FILE = join(__dirname, 'jest.style-mock.cjs');
} from '../common/constant';
const DEFAULT_CONFIG = { const DEFAULT_CONFIG = {
testEnvironment: 'jsdom', testEnvironment: 'jsdom',
moduleNameMapper: { moduleNameMapper: {
'\\.(css|less|scss)$': JEST_STYLE_MOCK_FILE, '\\.(css|less|scss)$': JEST_STYLE_MOCK_FILE,
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': JEST_FILE_MOCK_FILE, '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
JEST_FILE_MOCK_FILE,
}, },
setupFilesAfterEnv: [JEST_SETUP_FILE], setupFilesAfterEnv: [JEST_SETUP_FILE],
moduleFileExtensions: ['js', 'jsx', 'vue', 'ts', 'tsx'], moduleFileExtensions: ['js', 'jsx', 'vue', 'ts', 'tsx'],

View File

@ -0,0 +1 @@
require('jest-canvas-mock');

View File

@ -1,18 +1,16 @@
import { existsSync } from 'fs-extra'; const { join } = require('path');
import { ROOT_POSTCSS_CONFIG_FILE } from '../common/constant'; const { existsSync } = require('fs');
const { ROOT } = require('./shared.cjs');
type PostcssConfig = { function getRootPostcssConfig() {
plugins?: Record<string, unknown> | any[]; const ROOT_POSTCSS_CONFIG_FILE = join(ROOT, 'postcss.config.js');
};
export function getRootPostcssConfig(): PostcssConfig {
if (existsSync(ROOT_POSTCSS_CONFIG_FILE)) { if (existsSync(ROOT_POSTCSS_CONFIG_FILE)) {
return require(ROOT_POSTCSS_CONFIG_FILE); return require(ROOT_POSTCSS_CONFIG_FILE);
} }
return { plugins: [] }; return { plugins: [] };
} }
function getPostcssPlugins(rootConfig: PostcssConfig) { function getPostcssPlugins(rootConfig) {
const plugins = rootConfig.plugins || []; const plugins = rootConfig.plugins || [];
if (Array.isArray(plugins)) { if (Array.isArray(plugins)) {
@ -23,6 +21,7 @@ function getPostcssPlugins(rootConfig: PostcssConfig) {
if (hasPostcssPlugin) { if (hasPostcssPlugin) {
return plugins; return plugins;
} }
return [require('autoprefixer'), ...plugins]; return [require('autoprefixer'), ...plugins];
} }

View File

@ -0,0 +1,23 @@
const { join, dirname } = require('path');
const { existsSync } = require('fs');
function findRootDir(dir) {
if (existsSync(join(dir, 'vant.config.js'))) {
return dir;
}
const parentDir = dirname(dir);
if (dir === parentDir) {
return dir;
}
return findRootDir(parentDir);
}
const CWD = process.cwd();
const ROOT = findRootDir(CWD);
module.exports = {
CWD,
ROOT,
};

View File

@ -1,13 +1,14 @@
{ {
"name": "@vant/cli", "name": "@vant/cli",
"version": "4.0.0-rc.2", "version": "4.0.0-rc.2",
"type": "module",
"main": "lib/index.js", "main": "lib/index.js",
"typings": "lib/index.d.ts", "typings": "lib/index.d.ts",
"bin": { "bin": {
"vant-cli": "./bin.js" "vant-cli": "./bin.js"
}, },
"engines": { "engines": {
"node": ">=12" "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
@ -20,10 +21,11 @@
}, },
"files": [ "files": [
"lib", "lib",
"cjs",
"site", "site",
"template", "template",
"bin.js", "bin.js",
"preset.js" "preset.cjs"
], ],
"keywords": [ "keywords": [
"vant" "vant"
@ -33,7 +35,7 @@
"devDependencies": { "devDependencies": {
"@types/fs-extra": "^9.0.13", "@types/fs-extra": "^9.0.13",
"@types/less": "^3.0.3", "@types/less": "^3.0.3",
"@types/lodash": "^4.14.175", "@types/lodash-es": "^4.14.175",
"@types/markdown-it": "^12.2.3", "@types/markdown-it": "^12.2.3",
"@types/postcss-load-config": "^3.0.1", "@types/postcss-load-config": "^3.0.1",
"@vue/compiler-sfc": "^3.2.19", "@vue/compiler-sfc": "^3.2.19",
@ -71,7 +73,7 @@
"jest-serializer-html": "^7.1.0", "jest-serializer-html": "^7.1.0",
"less": "^4.1.2", "less": "^4.1.2",
"lint-staged": "^11.2.0", "lint-staged": "^11.2.0",
"lodash": "^4.17.21", "lodash-es": "^4.17.21",
"markdown-it": "^12.2.0", "markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.3.1", "markdown-it-anchor": "^8.3.1",
"ora": "^5.4.1", "ora": "^5.4.1",

View File

@ -1,3 +1,3 @@
const babelConfig = require('./lib/config/babel.config'); const babelConfig = require('./cjs/babel.config.cjs');
module.exports = (api, options) => babelConfig(api, options); module.exports = (api, options) => babelConfig(api, options);

View File

@ -11,7 +11,7 @@ import {
buildSite, buildSite,
commitLint, commitLint,
cliVersion, cliVersion,
} from '.'; } from './index.js';
const program = new Command(); const program = new Command();

View File

@ -1,10 +1,10 @@
import { emptyDir } from 'fs-extra'; import fse from 'fs-extra';
import { setNodeEnv } from '../common'; import { setNodeEnv } from '../common/index.js';
import { compileSite } from '../compiler/compile-site'; import { compileSite } from '../compiler/compile-site.js';
import { SITE_DIST_DIR } from '../common/constant'; import { SITE_DIST_DIR } from '../common/constant.js';
export async function buildSite() { export async function buildSite() {
setNodeEnv('production'); setNodeEnv('production');
await emptyDir(SITE_DIST_DIR); await fse.emptyDir(SITE_DIST_DIR);
await compileSite(true); await compileSite(true);
} }

View File

@ -1,20 +1,20 @@
import execa from 'execa'; import execa from 'execa';
import { join, relative } from 'path'; import { join, relative } from 'path';
import { remove, copy, readdir, existsSync } from 'fs-extra'; import fse from 'fs-extra';
import { clean } from './clean'; import { clean } from './clean.js';
import { CSS_LANG } from '../common/css'; import { CSS_LANG } from '../common/css.js';
import { ora, consola } from '../common/logger'; import { ora, consola } from '../common/logger.js';
import { installDependencies } from '../common/manager'; import { installDependencies } from '../common/manager.js';
import { compileSfc } from '../compiler/compile-sfc'; import { compileSfc } from '../compiler/compile-sfc.js';
import { compileStyle } from '../compiler/compile-style'; import { compileStyle } from '../compiler/compile-style.js';
import { compileScript } from '../compiler/compile-script'; import { compileScript } from '../compiler/compile-script.js';
import { compilePackage } from '../compiler/compile-package'; import { compilePackage } from '../compiler/compile-package.js';
import { genPackageEntry } from '../compiler/gen-package-entry'; import { genPackageEntry } from '../compiler/gen-package-entry.js';
import { genStyleDepsMap } from '../compiler/gen-style-deps-map'; import { genStyleDepsMap } from '../compiler/gen-style-deps-map.js';
import { genComponentStyle } from '../compiler/gen-component-style'; import { genComponentStyle } from '../compiler/gen-component-style.js';
import { SRC_DIR, LIB_DIR, ES_DIR } from '../common/constant'; import { SRC_DIR, LIB_DIR, ES_DIR } from '../common/constant.js';
import { genPackageStyle } from '../compiler/gen-package-style'; import { genPackageStyle } from '../compiler/gen-package-style.js';
import { genVeturConfig } from '../compiler/gen-vetur-config'; import { genVeturConfig } from '../compiler/gen-vetur-config.js';
import { import {
isDir, isDir,
isSfc, isSfc,
@ -26,7 +26,9 @@ import {
setNodeEnv, setNodeEnv,
setModuleEnv, setModuleEnv,
setBuildTarget, setBuildTarget,
} from '../common'; } from '../common/index.js';
const { remove, copy, readdir, existsSync } = fse;
async function compileFile(filePath: string) { async function compileFile(filePath: string) {
if (isScript(filePath)) { if (isScript(filePath)) {

View File

@ -1,10 +1,12 @@
import { join } from 'path'; import { join, dirname } from 'path';
import { ROOT } from '../common/constant'; import { fileURLToPath } from 'url';
import { ora, slimPath } from '../common/logger'; import { ROOT } from '../common/constant.js';
import { createWriteStream, readFileSync } from 'fs-extra'; import { ora, slimPath } from '../common/logger.js';
import { createWriteStream, readFileSync } from 'fs';
import conventionalChangelog from 'conventional-changelog'; import conventionalChangelog from 'conventional-changelog';
const DIST_FILE = join(ROOT, './changelog.generated.md'); const DIST_FILE = join(ROOT, './changelog.generated.md');
const __dirname = dirname(fileURLToPath(import.meta.url));
const MAIN_TEMPLATE = join(__dirname, '../../template/changelog-main.hbs'); const MAIN_TEMPLATE = join(__dirname, '../../template/changelog-main.hbs');
const HEADER_TEMPLATE = join(__dirname, '../../template/changelog-header.hbs'); const HEADER_TEMPLATE = join(__dirname, '../../template/changelog-header.hbs');
const COMMIT_TEMPLATE = join(__dirname, '../../template/changelog-commit.hbs'); const COMMIT_TEMPLATE = join(__dirname, '../../template/changelog-commit.hbs');

View File

@ -1,11 +1,13 @@
import { remove } from 'fs-extra'; import fse from 'fs-extra';
import { import {
ES_DIR, ES_DIR,
LIB_DIR, LIB_DIR,
DIST_DIR, DIST_DIR,
VETUR_DIR, VETUR_DIR,
SITE_DIST_DIR, SITE_DIST_DIR,
} from '../common/constant'; } from '../common/constant.js';
const { remove } = fse;
export async function clean() { export async function clean() {
await Promise.all([ await Promise.all([

View File

@ -1,7 +1,8 @@
import { readFileSync } from 'fs-extra'; import { readFileSync } from 'fs';
import { consola } from '../common/logger'; import { consola } from '../common/logger.js';
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|release|refactor|breaking change)(\(.+\))?: .{1,50}/; const commitRE =
/^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|release|refactor|breaking change)(\(.+\))?: .{1,50}/;
const mergeRE = /Merge /; const mergeRE = /Merge /;
export function commitLint(gitParams: string) { export function commitLint(gitParams: string) {

View File

@ -1,5 +1,5 @@
import { setNodeEnv } from '../common'; import { setNodeEnv } from '../common/index.js';
import { compileSite } from '../compiler/compile-site'; import { compileSite } from '../compiler/compile-site.js';
export async function dev() { export async function dev() {
setNodeEnv('development'); setNodeEnv('development');

View File

@ -1,7 +1,11 @@
import { runCLI } from 'jest'; import jest from 'jest';
import { setNodeEnv } from '../common'; import { setNodeEnv } from '../common/index.js';
import { genPackageEntry } from '../compiler/gen-package-entry'; import { genPackageEntry } from '../compiler/gen-package-entry.js';
import { ROOT, JEST_CONFIG_FILE, PACKAGE_ENTRY_FILE } from '../common/constant'; import {
ROOT,
JEST_CONFIG_FILE,
PACKAGE_ENTRY_FILE,
} from '../common/constant.js';
export function test(command: any) { export function test(command: any) {
setNodeEnv('test'); setNodeEnv('test');
@ -13,18 +17,19 @@ export function test(command: any) {
const config = { const config = {
rootDir: ROOT, rootDir: ROOT,
watch: command.watch, watch: command.watch,
debug: command.debug,
config: JEST_CONFIG_FILE, config: JEST_CONFIG_FILE,
runInBand: command.runInBand,
clearCache: command.clearCache, clearCache: command.clearCache,
changedSince: command.changedSince, changedSince: command.changedSince,
logHeapUsage: command.logHeapUsage, logHeapUsage: command.logHeapUsage,
runInBand: command.runInBand,
debug: command.debug,
// make jest tests faster // make jest tests faster
// see: https://ivantanev.com/make-jest-faster/ // see: https://ivantanev.com/make-jest-faster/
maxWorkers: '50%', maxWorkers: '50%',
} as any; } as any;
runCLI(config, [ROOT]) jest
.runCLI(config, [ROOT])
.then((response) => { .then((response) => {
if (!response.results.success && !command.watch) { if (!response.results.success && !command.watch) {
process.exit(1); process.exit(1);

View File

@ -1,6 +1,6 @@
import execa from 'execa'; import execa from 'execa';
import { consola, ora } from '../common/logger'; import { consola, ora } from '../common/logger.js';
import { SCRIPT_EXTS } from '../common/constant'; import { SCRIPT_EXTS } from '../common/constant.js';
type RunCommandMessages = { type RunCommandMessages = {
start: string; start: string;

View File

@ -1,7 +1,9 @@
/* eslint-disable no-template-curly-in-string */ /* eslint-disable no-template-curly-in-string */
import releaseIt from 'release-it'; import releaseIt from 'release-it';
import { join } from 'path'; import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
const __dirname = dirname(fileURLToPath(import.meta.url));
const PLUGIN_PATH = join(__dirname, '../compiler/vant-cli-release-plugin.js'); const PLUGIN_PATH = join(__dirname, '../compiler/vant-cli-release-plugin.js');
export async function release(command: { tag?: string }) { export async function release(command: { tag?: string }) {

View File

@ -1,5 +1,7 @@
import { get } from 'lodash'; import { get } from 'lodash-es';
import { existsSync } from 'fs-extra'; import { existsSync, readFileSync } from 'fs';
import { createRequire } from 'module';
import { fileURLToPath } from 'url';
import { join, dirname, isAbsolute } from 'path'; import { join, dirname, isAbsolute } from 'path';
function findRootDir(dir: string): string { function findRootDir(dir: string): string {
@ -25,12 +27,13 @@ export const VETUR_DIR = join(ROOT, 'vetur');
export const SITE_DIST_DIR = join(ROOT, 'site-dist'); export const SITE_DIST_DIR = join(ROOT, 'site-dist');
export const VANT_CONFIG_FILE = join(ROOT, 'vant.config.js'); export const VANT_CONFIG_FILE = join(ROOT, 'vant.config.js');
export const PACKAGE_JSON_FILE = join(ROOT, 'package.json'); export const PACKAGE_JSON_FILE = join(ROOT, 'package.json');
export const ROOT_POSTCSS_CONFIG_FILE = join(ROOT, 'postcss.config.js');
// Relative paths // Relative paths
export const DIST_DIR = join(__dirname, '../../dist'); const __dirname = dirname(fileURLToPath(import.meta.url));
export const CONFIG_DIR = join(__dirname, '../config'); export const CJS_DIR = join(__dirname, '..', '..', 'cjs');
export const SITE_SRC_DIR = join(__dirname, '../../site'); export const DIST_DIR = join(__dirname, '..', '..', 'dist');
export const CONFIG_DIR = join(__dirname, '..', 'config');
export const SITE_SRC_DIR = join(__dirname, '..', '..', 'site');
// Dist files // Dist files
export const PACKAGE_ENTRY_FILE = join(DIST_DIR, 'package-entry.js'); export const PACKAGE_ENTRY_FILE = join(DIST_DIR, 'package-entry.js');
@ -43,23 +46,19 @@ export const SITE_DESKTOP_SHARED_FILE = join(
export const STYLE_DEPS_JSON_FILE = join(DIST_DIR, 'style-deps.json'); export const STYLE_DEPS_JSON_FILE = join(DIST_DIR, 'style-deps.json');
// Config files // Config files
export const POSTCSS_CONFIG_FILE = join(CONFIG_DIR, 'postcss.config.js'); export const POSTCSS_CONFIG_FILE = join(CJS_DIR, 'postcss.config.cjs');
export const JEST_SETUP_FILE = join(CONFIG_DIR, 'jest.setup.js'); export const JEST_CONFIG_FILE = join(CJS_DIR, 'jest.config.cjs');
export const JEST_CONFIG_FILE = join(CONFIG_DIR, 'jest.config.js');
export const JEST_TRANSFORM_FILE = join(CONFIG_DIR, 'jest.transform.js');
export const JEST_FILE_MOCK_FILE = join(CONFIG_DIR, 'jest.file-mock.js');
export const JEST_STYLE_MOCK_FILE = join(CONFIG_DIR, 'jest.style-mock.js');
export const SCRIPT_EXTS = ['.js', '.jsx', '.vue', '.ts', '.tsx']; export const SCRIPT_EXTS = ['.js', '.jsx', '.vue', '.ts', '.tsx'];
export const STYLE_EXTS = ['.css', '.less', '.scss']; export const STYLE_EXTS = ['.css', '.less', '.scss'];
export function getPackageJson() { export function getPackageJson() {
delete require.cache[PACKAGE_JSON_FILE]; const rawJson = readFileSync(PACKAGE_JSON_FILE, 'utf-8');
return JSON.parse(rawJson);
return require(PACKAGE_JSON_FILE);
} }
export function getVantConfig() { export function getVantConfig() {
const require = createRequire(import.meta.url);
delete require.cache[VANT_CONFIG_FILE]; delete require.cache[VANT_CONFIG_FILE];
try { try {

View File

@ -1,8 +1,8 @@
import { get } from 'lodash'; import { get } from 'lodash-es';
import { existsSync } from 'fs'; import { existsSync } from 'fs';
import { join, isAbsolute } from 'path'; import { join, isAbsolute } from 'path';
import { getVantConfig } from '../common'; import { getVantConfig } from '../common/index.js';
import { STYLE_DIR, SRC_DIR } from './constant'; import { STYLE_DIR, SRC_DIR } from './constant.js';
type CSS_LANG = 'css' | 'less' | 'scss'; type CSS_LANG = 'css' | 'less' | 'scss';

View File

@ -1,15 +1,12 @@
import { get } from 'lodash'; import fse from 'fs-extra';
import { get } from 'lodash-es';
import { sep, join } from 'path'; import { sep, join } from 'path';
import { import { SRC_DIR, getVantConfig } from './constant.js';
lstatSync,
existsSync,
readdirSync,
readFileSync,
outputFileSync,
} from 'fs-extra';
import { SRC_DIR, getVantConfig } from './constant';
import type { InlineConfig } from 'vite'; import type { InlineConfig } from 'vite';
const { lstatSync, existsSync, readdirSync, readFileSync, outputFileSync } =
fse;
export const EXT_REGEXP = /\.\w+$/; export const EXT_REGEXP = /\.\w+$/;
export const SFC_REGEXP = /\.(vue)$/; export const SFC_REGEXP = /\.(vue)$/;
export const DEMO_REGEXP = new RegExp('\\' + sep + 'demo$'); export const DEMO_REGEXP = new RegExp('\\' + sep + 'demo$');

View File

@ -1,7 +1,7 @@
import ora from 'ora'; import ora from 'ora';
import chalk from 'chalk'; import chalk from 'chalk';
import consola from 'consola'; import consola from 'consola';
import { ROOT } from '../common/constant'; import { ROOT } from '../common/constant.js';
export function slimPath(path: string) { export function slimPath(path: string) {
return chalk.yellow(path.replace(ROOT, '')); return chalk.yellow(path.replace(ROOT, ''));

View File

@ -1,5 +1,5 @@
import execa from 'execa'; import execa from 'execa';
import { consola } from './logger'; import { consola } from './logger.js';
import { execSync } from 'child_process'; import { execSync } from 'child_process';
let hasYarnCache: boolean; let hasYarnCache: boolean;

View File

@ -1,7 +1,7 @@
import postcss from 'postcss'; import postcss from 'postcss';
import postcssrc from 'postcss-load-config'; import postcssrc from 'postcss-load-config';
import CleanCss from 'clean-css'; import CleanCss from 'clean-css';
import { POSTCSS_CONFIG_FILE } from '../common/constant'; import { POSTCSS_CONFIG_FILE } from '../common/constant.js';
const cleanCss = new CleanCss(); const cleanCss = new CleanCss();

View File

@ -1,11 +1,11 @@
import less from 'less';
import { join } from 'path'; import { join } from 'path';
import { render } from 'less'; import { readFileSync } from 'fs';
import { readFileSync } from 'fs-extra'; import { CWD } from '../common/constant.js';
import { CWD } from '../common/constant';
export async function compileLess(filePath: string) { export async function compileLess(filePath: string) {
const source = readFileSync(filePath, 'utf-8'); const source = readFileSync(filePath, 'utf-8');
const { css } = await render(source, { const { css } = await less.render(source, {
filename: filePath, filename: filePath,
paths: [join(CWD, 'node_modules')], paths: [join(CWD, 'node_modules')],
}); });

View File

@ -1,6 +1,6 @@
import { build } from 'vite'; import { build } from 'vite';
import { mergeCustomViteConfig } from '../common'; import { mergeCustomViteConfig } from '../common/index.js';
import { getViteConfigForPackage } from '../config/vite.package'; import { getViteConfigForPackage } from '../config/vite.package.js';
export async function compilePackage(minify: boolean) { export async function compilePackage(minify: boolean) {
const config = mergeCustomViteConfig(getViteConfigForPackage(minify)); const config = mergeCustomViteConfig(getViteConfigForPackage(minify));

View File

@ -1,3 +1,5 @@
import { createRequire } from 'module';
// allow to import from node_modules // allow to import from node_modules
// @import "~package-name/var.scss" // @import "~package-name/var.scss"
const tildeImporter = (url: string) => { const tildeImporter = (url: string) => {
@ -14,6 +16,7 @@ const tildeImporter = (url: string) => {
}; };
export async function compileSass(filePath: string) { export async function compileSass(filePath: string) {
const require = createRequire(import.meta.url);
const { renderSync } = require('sass'); const { renderSync } = require('sass');
const { css } = renderSync({ file: filePath, importer: tildeImporter }); const { css } = renderSync({ file: filePath, importer: tildeImporter });
return css; return css;

View File

@ -1,9 +1,11 @@
import fse from 'fs-extra';
import { sep } from 'path'; import { sep } from 'path';
import { transformAsync } from '@babel/core'; import { transformAsync } from '@babel/core';
import { readFileSync, removeSync, outputFileSync } from 'fs-extra'; import { replaceExt } from '../common/index.js';
import { replaceExt } from '../common'; import { replaceCSSImportExt } from '../common/css.js';
import { replaceCSSImportExt } from '../common/css'; import { replaceScriptImportExt } from './get-deps.js';
import { replaceScriptImportExt } from './get-deps';
const { readFileSync, removeSync, outputFileSync } = fse;
export async function compileScript(filePath: string): Promise<void> { export async function compileScript(filePath: string): Promise<void> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {

View File

@ -1,8 +1,10 @@
import hash from 'hash-sum'; import fse from 'fs-extra';
import path from 'path'; import path from 'path';
import hash from 'hash-sum';
import { parse, SFCBlock, compileTemplate } from '@vue/compiler-sfc'; import { parse, SFCBlock, compileTemplate } from '@vue/compiler-sfc';
import { remove, readFileSync, outputFile } from 'fs-extra'; import { replaceExt } from '../common/index.js';
import { replaceExt } from '../common';
const { remove, readFileSync, outputFile } = fse;
const RENDER_FN = '__vue_render__'; const RENDER_FN = '__vue_render__';
const VUEIDS = '__vue_sfc__'; const VUEIDS = '__vue_sfc__';

View File

@ -1,17 +1,18 @@
import chalk from 'chalk'; import chalk from 'chalk';
import { createRequire } from 'module';
import { createServer, build } from 'vite'; import { createServer, build } from 'vite';
import { import {
getViteConfigForSiteDev, getViteConfigForSiteDev,
getViteConfigForSiteProd, getViteConfigForSiteProd,
} from '../config/vite.site'; } from '../config/vite.site.js';
import { mergeCustomViteConfig, replaceExt } from '../common'; import { mergeCustomViteConfig, replaceExt } from '../common/index.js';
import { CSS_LANG } from '../common/css'; import { CSS_LANG } from '../common/css.js';
import { genPackageEntry } from './gen-package-entry'; import { genPackageEntry } from './gen-package-entry.js';
import { genPackageStyle } from './gen-package-style'; import { genPackageStyle } from './gen-package-style.js';
import { genSiteMobileShared } from './gen-site-mobile-shared'; import { genSiteMobileShared } from './gen-site-mobile-shared.js';
import { genSiteDesktopShared } from './gen-site-desktop-shared'; import { genSiteDesktopShared } from './gen-site-desktop-shared.js';
import { genStyleDepsMap } from './gen-style-deps-map'; import { genStyleDepsMap } from './gen-style-deps-map.js';
import { PACKAGE_ENTRY_FILE, PACKAGE_STYLE_FILE } from '../common/constant'; import { PACKAGE_ENTRY_FILE, PACKAGE_STYLE_FILE } from '../common/constant.js';
export async function genSiteEntry(): Promise<void> { export async function genSiteEntry(): Promise<void> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@ -44,6 +45,7 @@ export async function compileSite(production = false) {
const server = await createServer(config); const server = await createServer(config);
await server.listen(); await server.listen();
const require = createRequire(import.meta.url);
const { version } = require('vite/package.json'); const { version } = require('vite/package.json');
const viteInfo = chalk.cyan(`vite v${version}`); const viteInfo = chalk.cyan(`vite v${version}`);
console.log(`\n ${viteInfo}` + chalk.green(` dev server running at:\n`)); console.log(`\n ${viteInfo}` + chalk.green(` dev server running at:\n`));

View File

@ -1,10 +1,10 @@
import { parse } from 'path'; import { parse } from 'path';
import { readFileSync, writeFileSync } from 'fs'; import { readFileSync, writeFileSync } from 'fs';
import { replaceExt } from '../common'; import { replaceExt } from '../common/index.js';
import { compileCss } from './compile-css'; import { compileCss } from './compile-css.js';
import { compileLess } from './compile-less'; import { compileLess } from './compile-less.js';
import { compileSass } from './compile-sass'; import { compileSass } from './compile-sass.js';
import { consola } from '../common/logger'; import { consola } from '../common/logger.js';
async function compileFile(filePath: string) { async function compileFile(filePath: string) {
const parsedPath = parse(filePath); const parsedPath = parse(filePath);

View File

@ -2,19 +2,21 @@
* Build style entry of all components * Build style entry of all components
*/ */
import fse from 'fs-extra';
import { createRequire } from 'module';
import { sep, join, relative } from 'path'; import { sep, join, relative } from 'path';
import { outputFileSync } from 'fs-extra'; import { getComponents, replaceExt } from '../common/index.js';
import { getComponents, replaceExt } from '../common'; import { CSS_LANG, getCssBaseFile } from '../common/css.js';
import { CSS_LANG, getCssBaseFile } from '../common/css'; import { checkStyleExists } from './gen-style-deps-map.js';
import { checkStyleExists } from './gen-style-deps-map';
import { import {
ES_DIR, ES_DIR,
SRC_DIR, SRC_DIR,
LIB_DIR, LIB_DIR,
STYLE_DEPS_JSON_FILE, STYLE_DEPS_JSON_FILE,
} from '../common/constant'; } from '../common/constant.js';
function getDeps(component: string): string[] { function getDeps(component: string): string[] {
const require = createRequire(import.meta.url);
const styleDepsJson = require(STYLE_DEPS_JSON_FILE); const styleDepsJson = require(STYLE_DEPS_JSON_FILE);
if (styleDepsJson.map[component]) { if (styleDepsJson.map[component]) {
@ -73,7 +75,7 @@ function genEntry(params: {
content += depsPath.map(template).join('\n'); content += depsPath.map(template).join('\n');
content = content.replace(new RegExp('\\' + sep, 'g'), '/'); content = content.replace(new RegExp('\\' + sep, 'g'), '/');
outputFileSync(outputFile, content); fse.outputFileSync(outputFile, content);
}); });
} }
@ -81,6 +83,7 @@ export function genComponentStyle(
options: { cache: boolean } = { cache: true } options: { cache: boolean } = { cache: true }
) { ) {
if (!options.cache) { if (!options.cache) {
const require = createRequire(import.meta.url);
delete require.cache[STYLE_DEPS_JSON_FILE]; delete require.cache[STYLE_DEPS_JSON_FILE];
} }

View File

@ -1,12 +1,12 @@
import { get } from 'lodash'; import { get } from 'lodash-es';
import { join } from 'path'; import { join } from 'path';
import { import {
pascalize, pascalize,
getComponents, getComponents,
smartOutputFile, smartOutputFile,
normalizePath, normalizePath,
} from '../common'; } from '../common/index.js';
import { SRC_DIR, getPackageJson, getVantConfig } from '../common/constant'; import { SRC_DIR, getPackageJson, getVantConfig } from '../common/constant.js';
type PathResolver = (path: string) => string; type PathResolver = (path: string) => string;

View File

@ -1,8 +1,9 @@
import { join } from 'path'; import { join } from 'path';
import { existsSync } from 'fs-extra'; import { existsSync } from 'fs';
import { smartOutputFile, normalizePath } from '../common'; import { createRequire } from 'module';
import { CSS_LANG, getCssBaseFile } from '../common/css'; import { smartOutputFile, normalizePath } from '../common/index.js';
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant'; import { CSS_LANG, getCssBaseFile } from '../common/css.js';
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant.js';
type Options = { type Options = {
outputPath: string; outputPath: string;
@ -10,6 +11,7 @@ type Options = {
}; };
export function genPackageStyle(options: Options) { export function genPackageStyle(options: Options) {
const require = createRequire(import.meta.url);
const styleDepsJson = require(STYLE_DEPS_JSON_FILE); const styleDepsJson = require(STYLE_DEPS_JSON_FILE);
const ext = '.' + CSS_LANG; const ext = '.' + CSS_LANG;

View File

@ -1,20 +1,20 @@
import glob from 'fast-glob'; import glob from 'fast-glob';
import { join, parse } from 'path'; import { join, parse } from 'path';
import { existsSync, readFileSync, readdirSync } from 'fs-extra'; import { existsSync, readFileSync, readdirSync } from 'fs';
import { import {
pascalize, pascalize,
getVantConfig, getVantConfig,
smartOutputFile, smartOutputFile,
normalizePath, normalizePath,
isDev, isDev,
} from '../common'; } from '../common/index.js';
import { import {
SRC_DIR, SRC_DIR,
DOCS_DIR, DOCS_DIR,
getPackageJson, getPackageJson,
VANT_CONFIG_FILE, VANT_CONFIG_FILE,
SITE_DESKTOP_SHARED_FILE, SITE_DESKTOP_SHARED_FILE,
} from '../common/constant'; } from '../common/constant.js';
type DocumentItem = { type DocumentItem = {
name: string; name: string;

View File

@ -1,6 +1,6 @@
import { join } from 'path'; import { join } from 'path';
import { existsSync, readdirSync } from 'fs-extra'; import { existsSync, readdirSync } from 'fs';
import { SRC_DIR, SITE_MOBILE_SHARED_FILE } from '../common/constant'; import { SRC_DIR, SITE_MOBILE_SHARED_FILE } from '../common/constant.js';
import { import {
pascalize, pascalize,
removeExt, removeExt,
@ -8,8 +8,8 @@ import {
getVantConfig, getVantConfig,
smartOutputFile, smartOutputFile,
normalizePath, normalizePath,
} from '../common'; } from '../common/index.js';
import { CSS_LANG } from '../common/css'; import { CSS_LANG } from '../common/css.js';
type DemoItem = { type DemoItem = {
name: string; name: string;

View File

@ -1,9 +1,9 @@
import { relative, sep, join } from 'path'; import { relative, sep, join } from 'path';
import { CSS_LANG } from '../common/css'; import { CSS_LANG } from '../common/css.js';
import { existsSync } from 'fs-extra'; import { existsSync } from 'fs';
import { getDeps, clearDepsCache, fillExt } from './get-deps'; import { getDeps, clearDepsCache, fillExt } from './get-deps.js';
import { getComponents, smartOutputFile } from '../common'; import { getComponents, smartOutputFile } from '../common/index.js';
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant'; import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant.js';
function matchPath(path: string, component: string): boolean { function matchPath(path: string, component: string): boolean {
const p = relative(SRC_DIR, path); const p = relative(SRC_DIR, path);

View File

@ -1,11 +1,11 @@
import markdownVetur from '@vant/markdown-vetur'; import markdownVetur from '@vant/markdown-vetur';
import { get } from 'lodash'; import { get } from 'lodash-es';
import { import {
SRC_DIR, SRC_DIR,
VETUR_DIR, VETUR_DIR,
getVantConfig, getVantConfig,
getPackageJson, getPackageJson,
} from '../common/constant'; } from '../common/constant.js';
// generate vetur tags & attributes // generate vetur tags & attributes
export function genVeturConfig() { export function genVeturConfig() {

View File

@ -1,12 +1,13 @@
import { join } from 'path'; import { join } from 'path';
import { SCRIPT_EXTS } from '../common/constant'; import { SCRIPT_EXTS } from '../common/constant.js';
import { readFileSync, existsSync } from 'fs-extra'; import { readFileSync, existsSync } from 'fs';
let depsMap: Record<string, string[]> = {}; let depsMap: Record<string, string[]> = {};
let existsCache: Record<string, boolean> = {}; let existsCache: Record<string, boolean> = {};
// https://regexr.com/47jlq // https://regexr.com/47jlq
const IMPORT_RE = /import\s+?(?:(?:(?:[\w*\s{},]*)\s+from(\s+)?)|)(?:(?:".*?")|(?:'.*?'))[\s]*?(?:;|$|)/g; const IMPORT_RE =
/import\s+?(?:(?:(?:[\w*\s{},]*)\s+from(\s+)?)|)(?:(?:".*?")|(?:'.*?'))[\s]*?(?:;|$|)/g;
function matchImports(code: string): string[] { function matchImports(code: string): string[] {
const imports = code.match(IMPORT_RE) || []; const imports = code.match(IMPORT_RE) || [];

View File

@ -1,6 +1,6 @@
import releaseIt from 'release-it'; import releaseIt from 'release-it';
import { build } from '../commands/build'; import { build } from '../commands/build.js';
import { changelog } from '../commands/changelog'; import { changelog } from '../commands/changelog.js';
class VantCliReleasePlugin extends releaseIt.Plugin { class VantCliReleasePlugin extends releaseIt.Plugin {
async beforeRelease() { async beforeRelease() {

View File

@ -1 +0,0 @@
import 'jest-canvas-mock';

View File

@ -1,7 +1,7 @@
import { join } from 'path'; import { join } from 'path';
import type { InlineConfig } from 'vite'; import type { InlineConfig } from 'vite';
import { setBuildTarget } from '../common'; import { setBuildTarget } from '../common/index.js';
import { CWD, ES_DIR, getVantConfig, LIB_DIR } from '../common/constant'; import { CWD, ES_DIR, getVantConfig, LIB_DIR } from '../common/constant.js';
export function getViteConfigForPackage(minify: boolean): InlineConfig { export function getViteConfigForPackage(minify: boolean): InlineConfig {
setBuildTarget('package'); setBuildTarget('package');

View File

@ -1,16 +1,17 @@
import { join } from 'path'; import { join } from 'path';
import { get } from 'lodash'; import { get } from 'lodash-es';
import { createRequire } from 'module';
import hljs from 'highlight.js'; import hljs from 'highlight.js';
import vitePluginMd from 'vite-plugin-md'; import vitePluginMd from 'vite-plugin-md';
import vitePluginVue from '@vitejs/plugin-vue'; import vitePluginVue from '@vitejs/plugin-vue';
import vitePluginJsx from '@vitejs/plugin-vue-jsx'; import vitePluginJsx from '@vitejs/plugin-vue-jsx';
import { setBuildTarget, getVantConfig, isDev } from '../common'; import { setBuildTarget, getVantConfig, isDev } from '../common/index.js';
import { import {
SITE_DIST_DIR, SITE_DIST_DIR,
SITE_MOBILE_SHARED_FILE, SITE_MOBILE_SHARED_FILE,
SITE_DESKTOP_SHARED_FILE, SITE_DESKTOP_SHARED_FILE,
SITE_SRC_DIR, SITE_SRC_DIR,
} from '../common/constant'; } from '../common/constant.js';
import { injectHtml } from 'vite-plugin-html'; import { injectHtml } from 'vite-plugin-html';
import type { InlineConfig } from 'vite'; import type { InlineConfig } from 'vite';
import type MarkdownIt from 'markdown-it'; import type MarkdownIt from 'markdown-it';
@ -43,10 +44,7 @@ function markdownCardWrapper(htmlCode: string) {
// add target="_blank" to all links // add target="_blank" to all links
function markdownLinkOpen(md: MarkdownIt) { function markdownLinkOpen(md: MarkdownIt) {
const defaultRender = const defaultRender = md.renderer.rules.link_open;
md.renderer.rules.link_open ||
((tokens, idx, options, env, self) =>
self.renderToken(tokens, idx, options));
md.renderer.rules.link_open = (tokens, idx, options, env, self) => { md.renderer.rules.link_open = (tokens, idx, options, env, self) => {
const aIndex = tokens[idx].attrIndex('target'); const aIndex = tokens[idx].attrIndex('target');
@ -55,7 +53,11 @@ function markdownLinkOpen(md: MarkdownIt) {
tokens[idx].attrPush(['target', '_blank']); // add new attribute tokens[idx].attrPush(['target', '_blank']); // add new attribute
} }
return defaultRender(tokens, idx, options, env, self); if (defaultRender) {
return defaultRender(tokens, idx, options, env, self);
}
return self.renderToken(tokens, idx, options);
}; };
} }
@ -117,6 +119,7 @@ export function getViteConfigForSiteDev(): InlineConfig {
highlight: markdownHighlight, highlight: markdownHighlight,
}, },
markdownItSetup(md: MarkdownIt) { markdownItSetup(md: MarkdownIt) {
const require = createRequire(import.meta.url);
const { slugify } = require('transliteration'); const { slugify } = require('transliteration');
const markdownItAnchor = require('markdown-it-anchor'); const markdownItAnchor = require('markdown-it-anchor');

View File

@ -1,15 +1,18 @@
// @ts-ignore // @ts-ignore
import packageJson from '../package.json'; import fs from 'fs';
import { dev } from './commands/dev'; import { URL, fileURLToPath } from 'url';
import { lint } from './commands/lint'; import { dev } from './commands/dev.js';
import { test } from './commands/jest'; import { lint } from './commands/lint.js';
import { clean } from './commands/clean'; import { test } from './commands/jest.js';
import { build } from './commands/build'; import { clean } from './commands/clean.js';
import { release } from './commands/release'; import { build } from './commands/build.js';
import { changelog } from './commands/changelog'; import { release } from './commands/release.js';
import { buildSite } from './commands/build-site'; import { changelog } from './commands/changelog.js';
import { commitLint } from './commands/commit-lint'; import { buildSite } from './commands/build-site.js';
import { commitLint } from './commands/commit-lint.js';
const packagePath = fileURLToPath(new URL('../package.json', import.meta.url));
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));
export const cliVersion: string = packageJson.version; export const cliVersion: string = packageJson.version;
process.env.VANT_CLI_VERSION = cliVersion; process.env.VANT_CLI_VERSION = cliVersion;

View File

@ -2,11 +2,12 @@
"compilerOptions": { "compilerOptions": {
"target": "ES2019", "target": "ES2019",
"outDir": "./lib", "outDir": "./lib",
"module": "commonjs", "module": "ESNext",
"strict": true, "strict": true,
"declaration": true, "declaration": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
"moduleResolution":"Node",
"lib": ["esnext", "dom"] "lib": ["esnext", "dom"]
}, },
"include": ["src/**/*"] "include": ["src/**/*"]

View File

@ -1,7 +1,7 @@
module.exports = { module.exports = {
presets: [ presets: [
[ [
'@vant/cli/preset', '@vant/cli/preset.cjs',
{ {
loose: process.env.BUILD_TARGET === 'package', loose: process.env.BUILD_TARGET === 'package',
enableObjectSlots: false, enableObjectSlots: false,

View File

@ -1604,10 +1604,17 @@
resolved "https://registry.nlark.com/@types/linkify-it/download/@types/linkify-it-3.0.2.tgz#fd2cd2edbaa7eaac7e7f3c1748b52a19143846c9" resolved "https://registry.nlark.com/@types/linkify-it/download/@types/linkify-it-3.0.2.tgz#fd2cd2edbaa7eaac7e7f3c1748b52a19143846c9"
integrity sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk= integrity sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk=
"@types/lodash@^4.14.175": "@types/lodash-es@^4.14.175":
version "4.14.175" version "4.17.5"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.175.tgz#b78dfa959192b01fae0ad90e166478769b215f45" resolved "https://registry.nlark.com/@types/lodash-es/download/@types/lodash-es-4.17.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Flodash-es%2Fdownload%2F%40types%2Flodash-es-4.17.5.tgz#1c3fdd16849d84aea43890b1c60da379fb501353"
integrity sha512-XmdEOrKQ8a1Y/yxQFOMbC47G/V2VDO1GvMRnl4O75M4GW/abC5tnfzadQYkqEveqRM1dEJGFFegfPNA2vvx2iw== integrity sha1-HD/dFoSdhK6kOJCxxg2jeftQE1M=
dependencies:
"@types/lodash" "*"
"@types/lodash@*":
version "4.14.176"
resolved "https://registry.npmmirror.com/@types/lodash/download/@types/lodash-4.14.176.tgz?cache=0&sync_timestamp=1634771944515&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Flodash%2Fdownload%2F%40types%2Flodash-4.14.176.tgz#641150fc1cda36fbfa329de603bbb175d7ee20c0"
integrity sha1-ZBFQ/BzaNvv6Mp3mA7uxddfuIMA=
"@types/markdown-it@^12.2.3": "@types/markdown-it@^12.2.3":
version "12.2.3" version "12.2.3"
@ -5594,6 +5601,11 @@ locate-path@^5.0.0:
dependencies: dependencies:
p-locate "^4.1.0" p-locate "^4.1.0"
lodash-es@^4.17.21:
version "4.17.21"
resolved "https://registry.npm.taobao.org/lodash-es/download/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
integrity sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=
lodash.clonedeep@^4.5.0: lodash.clonedeep@^4.5.0:
version "4.5.0" version "4.5.0"
resolved "https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" resolved "https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"