chore: add prefix of node core modules (#11440)

This commit is contained in:
neverland 2022-12-31 20:27:35 +08:00 committed by GitHub
parent 65d6a22f03
commit 5bd6997d3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 43 additions and 43 deletions

View File

@ -1,4 +1,4 @@
import { join } from 'path';
import { join } from 'node:path';
export const CWD = process.cwd();
export const GENERATOR_DIR = join(__dirname, '../generators');

View File

@ -3,7 +3,7 @@ import glob from 'fast-glob';
import color from 'picocolors';
import consola from 'consola';
import { prompt } from 'enquirer';
import { sep, join } from 'path';
import { sep, join } from 'node:path';
import { CWD, GENERATOR_DIR } from './constant';
const PROMPTS = [

View File

@ -1,6 +1,6 @@
import fse from 'fs-extra';
import { execa } from 'execa';
import { join, relative } from 'path';
import { join, relative } from 'node:path';
import { clean } from './clean.js';
import { CSS_LANG } from '../common/css.js';
import { createSpinner, consola } from '../common/logger.js';

View File

@ -1,8 +1,8 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { join, dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import { ROOT } from '../common/constant.js';
import { createSpinner, slimPath } from '../common/logger.js';
import { createWriteStream, readFileSync } from 'fs';
import { createWriteStream, readFileSync } from 'node:fs';
import conventionalChangelog from 'conventional-changelog';
const DIST_FILE = join(ROOT, './changelog.generated.md');

View File

@ -1,4 +1,4 @@
import { readFileSync } from 'fs';
import { readFileSync } from 'node:fs';
import { consola } from '../common/logger.js';
const commitRE =

View File

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

View File

@ -1,6 +1,6 @@
import { existsSync, readFileSync } from 'fs';
import { fileURLToPath, pathToFileURL } from 'url';
import { join, dirname, isAbsolute } from 'path';
import { existsSync, readFileSync } from 'node:fs';
import { fileURLToPath, pathToFileURL } from 'node:url';
import { join, dirname, isAbsolute } from 'node:path';
function findRootDir(dir: string): string {
if (existsSync(join(dir, 'vant.config.mjs'))) {

View File

@ -1,5 +1,5 @@
import { existsSync } from 'fs';
import { join, isAbsolute } from 'path';
import { existsSync } from 'node:fs';
import { join, isAbsolute } from 'node:path';
import { getVantConfig } from '../common/index.js';
import { STYLE_DIR, SRC_DIR } from './constant.js';

View File

@ -1,5 +1,5 @@
import fse from 'fs-extra';
import { sep, join } from 'path';
import { sep, join } from 'node:path';
import { SRC_DIR, getVantConfig } from './constant.js';
import { InlineConfig, loadConfigFromFile, mergeConfig } from 'vite';

View File

@ -1,6 +1,6 @@
import less from 'less';
import { join } from 'path';
import { readFileSync } from 'fs';
import { join } from 'node:path';
import { readFileSync } from 'node:fs';
import { CWD } from '../common/constant.js';
export async function compileLess(filePath: string) {

View File

@ -1,4 +1,4 @@
import { createRequire } from 'module';
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);

View File

@ -1,7 +1,7 @@
import fse from 'fs-extra';
import babel from '@babel/core';
import esbuild, { type Format } from 'esbuild';
import { sep } from 'path';
import { sep } from 'node:path';
import { isJsx, replaceExt, getVantConfig } from '../common/index.js';
import { replaceCSSImportExt } from '../common/css.js';
import { replaceScriptImportExt } from './get-deps.js';

View File

@ -1,5 +1,5 @@
import fse from 'fs-extra';
import path from 'path';
import path from 'node:path';
import hash from 'hash-sum';
import {
parse,

View File

@ -1,5 +1,5 @@
import color from 'picocolors';
import { createRequire } from 'module';
import { createRequire } from 'node:module';
import { createServer, build } from 'vite';
import {
getViteConfigForSiteDev,

View File

@ -1,4 +1,4 @@
import { parse } from 'path';
import { parse } from 'node:path';
import fse from 'fs-extra';
import { getVantConfig, replaceExt } from '../common/index.js';
import { compileCss } from './compile-css.js';

View File

@ -3,8 +3,8 @@
*/
import fse from 'fs-extra';
import { createRequire } from 'module';
import { sep, join, relative } from 'path';
import { createRequire } from 'node:module';
import { sep, join, relative } from 'node:path';
import { getComponents, replaceExt } from '../common/index.js';
import { CSS_LANG, getCssBaseFile } from '../common/css.js';
import { checkStyleExists } from './gen-style-deps-map.js';

View File

@ -1,4 +1,4 @@
import { join } from 'path';
import { join } from 'node:path';
import {
pascalize,
getComponents,

View File

@ -1,6 +1,6 @@
import { join } from 'path';
import { existsSync } from 'fs';
import { createRequire } from 'module';
import { join } from 'node:path';
import { existsSync } from 'node:fs';
import { createRequire } from 'node:module';
import { smartOutputFile, normalizePath } from '../common/index.js';
import { CSS_LANG, getCssBaseFile } from '../common/css.js';
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant.js';

View File

@ -1,6 +1,6 @@
import glob from 'fast-glob';
import { join, parse } from 'path';
import { existsSync, readFileSync, readdirSync } from 'fs';
import { join, parse } from 'node:path';
import { existsSync, readFileSync, readdirSync } from 'node:fs';
import { pascalize, getVantConfig, normalizePath } from '../common/index.js';
import {
SRC_DIR,

View File

@ -1,5 +1,5 @@
import { join } from 'path';
import { existsSync, readdirSync } from 'fs';
import { join } from 'node:path';
import { existsSync, readdirSync } from 'node:fs';
import { SRC_DIR } from '../common/constant.js';
import {
pascalize,

View File

@ -1,6 +1,6 @@
import { relative, sep, join } from 'path';
import { relative, sep, join } from 'node:path';
import { CSS_LANG } from '../common/css.js';
import { existsSync } from 'fs';
import { existsSync } from 'node:fs';
import { getDeps, clearDepsCache, fillExt } from './get-deps.js';
import { getComponents, smartOutputFile } from '../common/index.js';
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant.js';

View File

@ -1,6 +1,6 @@
import { join } from 'path';
import { join } from 'node:path';
import { SCRIPT_EXTS, STYLE_EXTS } from '../common/constant.js';
import { readFileSync, existsSync } from 'fs';
import { readFileSync, existsSync } from 'node:fs';
let depsMap: Record<string, string[]> = {};
let existsCache: Record<string, boolean> = {};

View File

@ -1,5 +1,5 @@
import glob from 'fast-glob';
import { join } from 'path';
import { join } from 'node:path';
import fse from 'fs-extra';
import { mdParser } from './parser.js';
import { formatter } from './formatter.js';

View File

@ -1,4 +1,4 @@
import { PathLike } from 'fs';
import { PathLike } from 'node:fs';
export type VueSlot = {
name: string;

View File

@ -1,4 +1,4 @@
import { join } from 'path';
import { join } from 'node:path';
import { setBuildTarget } from '../common/index.js';
import { CWD, ES_DIR, getVantConfig, LIB_DIR } from '../common/constant.js';
import type { InlineConfig } from 'vite';

View File

@ -1,5 +1,5 @@
import { join } from 'path';
import { createRequire } from 'module';
import { join } from 'node:path';
import { createRequire } from 'node:module';
import hljs from 'highlight.js';
import vitePluginMd from 'vite-plugin-md';
import vitePluginVue from '@vitejs/plugin-vue';

View File

@ -1,6 +1,6 @@
// @ts-ignore
import fs from 'fs';
import { URL, fileURLToPath } from 'url';
import fs from 'node:fs';
import { URL, fileURLToPath } from 'node:url';
const packagePath = fileURLToPath(new URL('../package.json', import.meta.url));
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));