@tomjs/create-app 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/locales/en-US.json +28 -0
- package/locales/zh-CN.json +28 -0
- package/package.json +3 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.description": "Create a node/web/electron/vscode project based on tomjs",
|
|
3
|
+
"options.dir": "Project directory",
|
|
4
|
+
"options.help": "Show help information",
|
|
5
|
+
"options.interactive": "Force interactive",
|
|
6
|
+
"options.overwrite": "Overwrite existing project",
|
|
7
|
+
"options.private": "Set as private project",
|
|
8
|
+
"options.verbose": "Show verbose logs",
|
|
9
|
+
"options.version": "Show version information",
|
|
10
|
+
"prompt.cancel": "Operation cancelled",
|
|
11
|
+
"prompt.confirm.no": "No",
|
|
12
|
+
"prompt.confirm.yes": "Yes",
|
|
13
|
+
"prompt.exist.message": "Target directory {0} is not empty. Please choose how to proceed:",
|
|
14
|
+
"prompt.exist.option.ignore": "Ignore files and continue",
|
|
15
|
+
"prompt.exist.option.no": "Cancel operation",
|
|
16
|
+
"prompt.exist.option.yes": "Delete existing files and continue",
|
|
17
|
+
"prompt.gitOrg.invalid": "Invalid organization",
|
|
18
|
+
"prompt.gitOrg.message": "Please enter git repository organization:",
|
|
19
|
+
"prompt.gitUrl.message": "Please select git repository URL:",
|
|
20
|
+
"prompt.package.invalid": "Invalid package.json name",
|
|
21
|
+
"prompt.package.message": "Please enter package name:",
|
|
22
|
+
"prompt.project.invalid": "Invalid project name",
|
|
23
|
+
"prompt.project.message": "Please enter project name:",
|
|
24
|
+
"prompt.public.message": "Is this a public project?",
|
|
25
|
+
"prompt.template.back": "← Back",
|
|
26
|
+
"prompt.template.message": "Please select template:",
|
|
27
|
+
"prompt.templateType.message": "Please select template type:"
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.description": "创建基于 tomjs 的 node/web/electron/vscode 项目",
|
|
3
|
+
"options.dir": "项目目录",
|
|
4
|
+
"options.help": "显示帮助信息",
|
|
5
|
+
"options.interactive": "强制互动",
|
|
6
|
+
"options.overwrite": "覆盖已存在的目录",
|
|
7
|
+
"options.private": "设为私有项目",
|
|
8
|
+
"options.verbose": "显示详细日志",
|
|
9
|
+
"options.version": "显示版本信息",
|
|
10
|
+
"prompt.cancel": "操作取消",
|
|
11
|
+
"prompt.confirm.no": "否",
|
|
12
|
+
"prompt.confirm.yes": "是",
|
|
13
|
+
"prompt.exist.message": "目标目录 {0} 不为空。请选择后续操作方式:",
|
|
14
|
+
"prompt.exist.option.ignore": "忽略文件并继续",
|
|
15
|
+
"prompt.exist.option.no": "取消操作",
|
|
16
|
+
"prompt.exist.option.yes": "删除现有文件并继续",
|
|
17
|
+
"prompt.gitOrg.invalid": "无效的组织",
|
|
18
|
+
"prompt.gitOrg.message": "请输入git仓库组织:",
|
|
19
|
+
"prompt.gitUrl.message": "请选择git仓库地址:",
|
|
20
|
+
"prompt.package.invalid": "无效的 package.json name",
|
|
21
|
+
"prompt.package.message": "请输入包名称:",
|
|
22
|
+
"prompt.project.invalid": "无效的项目名称",
|
|
23
|
+
"prompt.project.message": "请输入项目名称:",
|
|
24
|
+
"prompt.public.message": "是否为公开项目?",
|
|
25
|
+
"prompt.template.back": "← 返回",
|
|
26
|
+
"prompt.template.message": "请选择模板:",
|
|
27
|
+
"prompt.templateType.message": "请选择模板类型:"
|
|
28
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tomjs/create-app",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "2.0.3",
|
|
5
|
+
"description": "Create a node/web/electron/vscode project based on tomjs",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Tom Gao",
|
|
8
8
|
"email": "tom@tomgao.cc"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"create-app": "dist/index.js"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
|
+
"locales",
|
|
41
42
|
"dist",
|
|
42
43
|
"templates",
|
|
43
44
|
"!templates/*/node_modules/.bin/*"
|