refactor: create-fes-app 模块代码规范

This commit is contained in:
ocean-gao 2024-11-27 17:28:15 +08:00
parent 57645b1adf
commit 7bba040e7a
8 changed files with 73 additions and 60 deletions

View File

@ -32,5 +32,6 @@ export default await antfu({
multilineDetection: 'brackets', multilineDetection: 'brackets',
}, },
], ],
'no-console': 'off',
}, },
}); });

View File

@ -2,30 +2,30 @@
"name": "@fesjs/create-fes-app", "name": "@fesjs/create-fes-app",
"version": "3.0.4", "version": "3.0.4",
"description": "create a app base on fes.js", "description": "create a app base on fes.js",
"main": "lib/index.js", "author": "qlin",
"files": [ "license": "MIT",
"lib", "homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"bin",
"templates/**/*"
],
"bin": {
"create-fes-app": "bin/create-fes-app.js"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git", "url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/create-fes-app" "directory": "packages/create-fes-app"
}, },
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"keywords": [ "keywords": [
"fes" "fes"
], ],
"sideEffects": false, "sideEffects": false,
"author": "qlin", "main": "lib/index.js",
"license": "MIT", "bin": {
"bugs": { "create-fes-app": "bin/create-fes-app.js"
"url": "https://github.com/WeBankFinTech/fes.js/issues"
}, },
"homepage": "https://github.com/WeBankFinTech/fes.js#readme", "files": [
"bin",
"lib",
"templates/**/*"
],
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -1,7 +1,7 @@
import { existsSync } from 'node:fs';
import { join } from 'node:path';
import process from 'node:process';
import { chalk, yParser } from '@fesjs/utils'; import { chalk, yParser } from '@fesjs/utils';
import { existsSync } from 'fs';
import { join } from 'path';
const args = yParser(process.argv.slice(2), { const args = yParser(process.argv.slice(2), {
alias: { alias: {
@ -9,9 +9,9 @@ const args = yParser(process.argv.slice(2), {
help: ['h'], help: ['h'],
force: ['f'], force: ['f'],
merge: ['m'], merge: ['m'],
proxy: ['x'] proxy: ['x'],
}, },
boolean: ['version', 'help', 'merge', 'force'] boolean: ['version', 'help', 'merge', 'force'],
}); });
if (args._.length > 1) { if (args._.length > 1) {
@ -25,7 +25,8 @@ if (args.version && !args._[0]) {
: ''; : '';
const { name, version } = require('../package.json'); const { name, version } = require('../package.json');
console.log(`${name}@${version}${local}`); console.log(`${name}@${version}${local}`);
} else if (args.help && !args._[0]) { }
else if (args.help && !args._[0]) {
console.log(` console.log(`
Usage: create-fes-app <name> Usage: create-fes-app <name>
@ -36,11 +37,12 @@ Options:
-m, --merge Merge target directory if it exists -m, --merge Merge target directory if it exists
-x, --proxy <proxyUrl> Use specified proxy when creating project -x, --proxy <proxyUrl> Use specified proxy when creating project
`); `);
} else { }
else {
require('.') require('.')
.default({ .default({
cwd: process.cwd(), cwd: process.cwd(),
args args,
}) })
.catch((err) => { .catch((err) => {
console.error(`Create failed, ${err.message}`); console.error(`Create failed, ${err.message}`);

View File

@ -1,12 +1,13 @@
import path from 'path'; import path from 'node:path';
import process from 'node:process';
import { chalk } from '@fesjs/utils'; import { chalk } from '@fesjs/utils';
import validateProjectName from 'validate-npm-package-name';
import fs from 'fs-extra'; import fs from 'fs-extra';
import inquirer from 'inquirer'; import inquirer from 'inquirer';
import validateProjectName from 'validate-npm-package-name';
import { clearConsole } from './utils';
import AppGenerator from './generator/App'; import AppGenerator from './generator/App';
import PluginGenerator from './generator/Plugin'; import PluginGenerator from './generator/Plugin';
import { clearConsole } from './utils';
export default async ({ cwd, args }) => { export default async ({ cwd, args }) => {
if (args.proxy) { if (args.proxy) {
@ -20,20 +21,21 @@ export default async ({ cwd, args }) => {
const result = validateProjectName(name); const result = validateProjectName(name);
if (!result.validForNewPackages) { if (!result.validForNewPackages) {
console.error(chalk.red(`Invalid project name: "${name}"`)); console.error(chalk.red(`Invalid project name: "${name}"`));
result.errors && result.errors
result.errors.forEach((err) => { && result.errors.forEach((err) => {
console.error(chalk.red.dim(`Error: ${err}`)); console.error(chalk.red.dim(`Error: ${err}`));
}); });
result.warnings && result.warnings
result.warnings.forEach((warn) => { && result.warnings.forEach((warn) => {
console.error(chalk.red.dim(`Warning: ${warn}`)); console.error(chalk.red.dim(`Warning: ${warn}`));
}); });
throw new Error('Process exited'); throw new Error('Process exited');
} }
if (fs.pathExistsSync(targetDir) && !args.merge) { if (fs.pathExistsSync(targetDir) && !args.merge) {
if (args.force) { if (args.force) {
await fs.remove(targetDir); await fs.remove(targetDir);
} else if (inCurrent) { }
else if (inCurrent) {
clearConsole(); clearConsole();
const { ok } = await inquirer.prompt([ const { ok } = await inquirer.prompt([
{ {
@ -45,7 +47,8 @@ export default async ({ cwd, args }) => {
if (!ok) { if (!ok) {
return null; return null;
} }
} else { }
else {
clearConsole(); clearConsole();
const { action } = await inquirer.prompt([ const { action } = await inquirer.prompt([
{ {
@ -98,7 +101,8 @@ export default async ({ cwd, args }) => {
console.log('$ pnpm i'); console.log('$ pnpm i');
console.log('$ pnpm dev'); console.log('$ pnpm dev');
console.log(); console.log();
} else if (template === 'plugin') { }
else if (template === 'plugin') {
const generator = new PluginGenerator({ const generator = new PluginGenerator({
cwd, cwd,
args, args,

View File

@ -1,6 +1,7 @@
import readline from 'readline'; import process from 'node:process';
import readline from 'node:readline';
export const clearConsole = (title) => { export function clearConsole(title) {
if (process.stdout.isTTY) { if (process.stdout.isTTY) {
const blank = '\n'.repeat(process.stdout.rows); const blank = '\n'.repeat(process.stdout.rows);
console.log(blank); console.log(blank);
@ -10,4 +11,4 @@ export const clearConsole = (title) => {
console.log(title); console.log(title);
} }
} }
}; }

View File

@ -1,17 +1,18 @@
// 关闭 import 规则 // 关闭 import 规则
/* eslint import/no-extraneous-dependencies: 0 */ /* eslint import/no-extraneous-dependencies: 0 */
const fs = require('fs'); const fs = require('node:fs');
const fse = require('fs-extra'); const path = require('node:path');
const path = require('path'); const process = require('node:process');
const merge = require('deepmerge');
const chokidar = require('chokidar');
const chalk = require('chalk'); const chalk = require('chalk');
const chokidar = require('chokidar');
const merge = require('deepmerge');
const fse = require('fs-extra');
const argv = require('yargs-parser')(process.argv.slice(2)); const argv = require('yargs-parser')(process.argv.slice(2));
const pkg = require('../package.json');
const compiler = require('./compiler'); const compiler = require('./compiler');
const randomColor = require('./randomColor'); const randomColor = require('./randomColor');
const pkg = require('../package.json');
const ESM_OUTPUT_DIR = 'es'; const ESM_OUTPUT_DIR = 'es';
const NODE_CJS_OUTPUT_DIR = 'lib'; const NODE_CJS_OUTPUT_DIR = 'lib';
@ -76,10 +77,12 @@ function transformFile(filePath, outputPath, config, log) {
const type = config.target === 'browser' ? ESM_OUTPUT_DIR : NODE_CJS_OUTPUT_DIR; const type = config.target === 'browser' ? ESM_OUTPUT_DIR : NODE_CJS_OUTPUT_DIR;
log(`Transform to ${type} for ${config.target === 'browser' ? chalk.yellow(shortFilePath) : chalk.blue(shortFilePath)}`); log(`Transform to ${type} for ${config.target === 'browser' ? chalk.yellow(shortFilePath) : chalk.blue(shortFilePath)}`);
fse.outputFileSync(outputPath, transformedCode); fse.outputFileSync(outputPath, transformedCode);
} catch (error) { }
catch (error) {
console.error(error); console.error(error);
} }
} else { }
else {
fse.copySync(filePath, outputPath); fse.copySync(filePath, outputPath);
} }
} }
@ -92,10 +95,12 @@ function compilerPkg(codeDir, outputDir, config, log) {
const fileStats = fs.lstatSync(filePath); const fileStats = fs.lstatSync(filePath);
if (config.copy.includes(file)) { if (config.copy.includes(file)) {
fse.copySync(filePath, outputFilePath); fse.copySync(filePath, outputFilePath);
} else if (fileStats.isDirectory(filePath) && !/__tests__/.test(file)) { }
else if (fileStats.isDirectory(filePath) && !/__tests__/.test(file)) {
fse.ensureDirSync(outputFilePath); fse.ensureDirSync(outputFilePath);
compilerPkg(filePath, outputFilePath, config, log); compilerPkg(filePath, outputFilePath, config, log);
} else if (fileStats.isFile(filePath)) { }
else if (fileStats.isFile(filePath)) {
transformFile(filePath, outputFilePath, config, log); transformFile(filePath, outputFilePath, config, log);
} }
}); });
@ -112,11 +117,13 @@ function watchFile(dir, outputDir, config, log) {
const outputPath = changeFile.replace(dir, outputDir); const outputPath = changeFile.replace(dir, outputDir);
const stat = fs.lstatSync(changeFile); const stat = fs.lstatSync(changeFile);
log(`[${event}] ${shortChangeFile}`); log(`[${event}] ${shortChangeFile}`);
if (config.resolveCopy.some((item) => changeFile.startsWith(item))) { if (config.resolveCopy.some(item => changeFile.startsWith(item))) {
fse.copySync(changeFile, outputPath); fse.copySync(changeFile, outputPath);
} else if (stat.isFile()) { }
else if (stat.isFile()) {
transformFile(changeFile, outputPath, config, log); transformFile(changeFile, outputPath, config, log);
} else if (stat.isDirectory()) { }
else if (stat.isDirectory()) {
compilerPkg(changeFile, outputPath, config); compilerPkg(changeFile, outputPath, config);
} }
}); });

View File

@ -27,7 +27,8 @@ module.exports = function (pkg) {
cache[pkg] = str; cache[pkg] = str;
if (index === colors.length - 1) { if (index === colors.length - 1) {
index = 0; index = 0;
} else { }
else {
index += 1; index += 1;
} }
} }

View File

@ -1,10 +1,7 @@
import {} from '@fesjs/fes'; import {} from '@fesjs/fes';
declare module "@fesjs/fes" {
interface PluginBuildConfig {
}
interface PluginRuntimeConfig { declare module '@fesjs/fes' {
interface PluginBuildConfig {}
}
interface PluginRuntimeConfig {}
} }