@coze-arch/cli 0.0.16 → 0.0.18
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/lib/__templates__/templates.json +0 -37
- package/lib/cli.js +1 -1
- package/package.json +1 -1
|
@@ -126,43 +126,6 @@
|
|
|
126
126
|
"additionalProperties": false
|
|
127
127
|
}
|
|
128
128
|
},
|
|
129
|
-
{
|
|
130
|
-
"name": "test-only",
|
|
131
|
-
"description": "Test template showcasing all template hooks and features",
|
|
132
|
-
"location": "./test-only",
|
|
133
|
-
"paramsSchema": {
|
|
134
|
-
"type": "object",
|
|
135
|
-
"properties": {
|
|
136
|
-
"appName": {
|
|
137
|
-
"type": "string",
|
|
138
|
-
"minLength": 1,
|
|
139
|
-
"pattern": "^[a-z0-9-]+$",
|
|
140
|
-
"description": "Application name (lowercase, alphanumeric and hyphens only)"
|
|
141
|
-
},
|
|
142
|
-
"port": {
|
|
143
|
-
"type": "number",
|
|
144
|
-
"default": 5000,
|
|
145
|
-
"minimum": 1024,
|
|
146
|
-
"maximum": 65535,
|
|
147
|
-
"description": "Development server port"
|
|
148
|
-
},
|
|
149
|
-
"includeTests": {
|
|
150
|
-
"type": "boolean",
|
|
151
|
-
"default": true,
|
|
152
|
-
"nullable": true,
|
|
153
|
-
"description": "Include test files"
|
|
154
|
-
},
|
|
155
|
-
"addCopyright": {
|
|
156
|
-
"type": "boolean",
|
|
157
|
-
"default": false,
|
|
158
|
-
"nullable": true,
|
|
159
|
-
"description": "Add copyright header to source files"
|
|
160
|
-
}
|
|
161
|
-
},
|
|
162
|
-
"required": [],
|
|
163
|
-
"additionalProperties": false
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
129
|
{
|
|
167
130
|
"name": "vite",
|
|
168
131
|
"description": "Vite(简单项目):`coze init ${COZE_WORKSPACE_PATH} --template vite`\n- 适用:轻量级 SPA、纯前端交互、仪表盘等轻量级项目。",
|
package/lib/cli.js
CHANGED
|
@@ -2107,7 +2107,7 @@ const EventBuilder = {
|
|
|
2107
2107
|
};
|
|
2108
2108
|
|
|
2109
2109
|
var name = "@coze-arch/cli";
|
|
2110
|
-
var version = "0.0.
|
|
2110
|
+
var version = "0.0.18";
|
|
2111
2111
|
var description = "coze coding devtools cli";
|
|
2112
2112
|
var license = "MIT";
|
|
2113
2113
|
var author = "fanwenjie.fe@bytedance.com";
|