@modern-js/module-tools
Version:
Simple, powerful, high-performance modern npm package development solution.
86 lines (83 loc) • 3.85 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var zh_exports = {};
__export(zh_exports, {
ZH_LOCALE: () => ZH_LOCALE
});
module.exports = __toCommonJS(zh_exports);
var import_utils = require("@modern-js/utils");
const noDevTools = `暂无可用的 DevTools,你可以通过以下选项以及对应的链接来了解如何使用。
- ${import_utils.chalk.underline(import_utils.chalk.blue("[Storybook]:"), "https://modernjs.dev/module-tools/guide/basic/using-storybook.html")}
`;
const ZH_LOCALE = {
command: {
shared: {
config: "指定配置文件路径,可以为相对路径或绝对路径",
noNeedInstall: "无需安装依赖"
},
build: {
describe: "构建生产环境产物",
watch: "使用 Watch 模式构建模块",
tsconfig: "指定 tsconfig.json 文件的路径",
styleOnly: "只构建样式文件",
platform: '如果存在的话,执行指定的构建任务或者全部构建任务. (构建任务包括: "storybook", "文档")',
noTsc: "关闭 tsc 编译(废弃)",
dts: "开启 dts 文件的生成以及类型检查",
noClear: "不清理产物目录"
},
dev: {
describe: "运行和调试模块",
tsconfig: "指定 tsconfig.json 文件的路径"
},
new: {
describe: "启用可选功能",
debug: "开启 Debug 模式,打印调试日志信息",
config: "生成器运行默认配置(JSON 字符串)",
distTag: "生成器使用特殊的 npm Tag 版本",
registry: "生成器运行过程中定制 npm Registry",
lang: "设置 new 命令执行语言(zh 或者 en)"
}
},
log: {
dev: {
noDevtools: noDevTools
},
buildConfigTip: "当前项目的配置文件中同时设置了 `buildConfig` 和 `buildPreset`,因此仅有 `buildConfig` 配置能够生效。如果你需要覆盖 `buildPreset` 的内容,请使用 `buildPreset` 的函数配置方式(详见 API 文档)。"
},
errors: {
externalHelpers: `当前开启了 'externalHelpers' 配置,未找到 "@swc/helpers" 依赖声明,构建产物会存在问题。使用下面的方式进行安装:
${import_utils.chalk.blue("Package Manager is npm:")}
${import_utils.chalk.yellow("`npm i @swc/helpers`")} Or ${import_utils.chalk.yellow("`npm i @swc/helpers -D`")}
${import_utils.chalk.blue("Package Manager is pnpm:")}
${import_utils.chalk.yellow("`pnpm i @swc/helpers`")} Or ${import_utils.chalk.yellow("`pnpm i @swc/helpers -D`")}
${import_utils.chalk.blue("Package Manager is yarn:")}
${import_utils.chalk.yellow("`yarn add @swc/helpers`")} Or ${import_utils.chalk.yellow("`yarn add @swc/helpers -D`")}
`
},
warns: {
dts: {
abortOnError: "当前关闭了 `dts.abortOnError` 配置,类型错误不会导致构建失败,但无法保证类型文件正常输出"
},
clearRootPath: "检测到配置中 outDir 与当前项目目录相同,不会自动删除当前产物目录"
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
ZH_LOCALE
});