uloop-cli 0.67.2 → 0.67.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/README.md +260 -29
- package/README_ja.md +366 -0
- package/dist/cli.bundle.cjs +73 -5
- package/dist/cli.bundle.cjs.map +2 -2
- package/package.json +1 -1
- package/src/default-tools.json +72 -4
- package/src/version.ts +1 -1
package/package.json
CHANGED
package/src/default-tools.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.67.
|
|
2
|
+
"version": "0.67.3",
|
|
3
3
|
"tools": [
|
|
4
4
|
{
|
|
5
5
|
"name": "compile",
|
|
@@ -143,6 +143,11 @@
|
|
|
143
143
|
"type": "boolean",
|
|
144
144
|
"description": "Include path information"
|
|
145
145
|
},
|
|
146
|
+
"UseComponentsLut": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"description": "Use LUT for components (auto|true|false)",
|
|
149
|
+
"default": "auto"
|
|
150
|
+
},
|
|
146
151
|
"UseSelection": {
|
|
147
152
|
"type": "boolean",
|
|
148
153
|
"description": "Use selected GameObject(s) as root(s). When true, RootPath is ignored.",
|
|
@@ -173,9 +178,63 @@
|
|
|
173
178
|
"description": "Maximum number of results",
|
|
174
179
|
"default": 50
|
|
175
180
|
},
|
|
181
|
+
"IncludeDescription": {
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"description": "Include detailed descriptions in results",
|
|
184
|
+
"default": true
|
|
185
|
+
},
|
|
186
|
+
"IncludeMetadata": {
|
|
187
|
+
"type": "boolean",
|
|
188
|
+
"description": "Include file metadata (size, modified date)"
|
|
189
|
+
},
|
|
190
|
+
"SearchFlags": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"description": "Search flags (Default, Synchronous, WantsMore, Packages, Sorted)",
|
|
193
|
+
"enum": [
|
|
194
|
+
"Default",
|
|
195
|
+
"Synchronous",
|
|
196
|
+
"WantsMore",
|
|
197
|
+
"Packages",
|
|
198
|
+
"Sorted"
|
|
199
|
+
],
|
|
200
|
+
"default": "Default"
|
|
201
|
+
},
|
|
176
202
|
"SaveToFile": {
|
|
177
203
|
"type": "boolean",
|
|
178
204
|
"description": "Save results to file"
|
|
205
|
+
},
|
|
206
|
+
"OutputFormat": {
|
|
207
|
+
"type": "string",
|
|
208
|
+
"description": "Output file format when SaveToFile is enabled",
|
|
209
|
+
"enum": [
|
|
210
|
+
"JSON",
|
|
211
|
+
"CSV",
|
|
212
|
+
"TSV"
|
|
213
|
+
],
|
|
214
|
+
"default": "JSON"
|
|
215
|
+
},
|
|
216
|
+
"AutoSaveThreshold": {
|
|
217
|
+
"type": "integer",
|
|
218
|
+
"description": "Threshold for automatic file saving (0 to disable)",
|
|
219
|
+
"default": 100
|
|
220
|
+
},
|
|
221
|
+
"FileExtensions": {
|
|
222
|
+
"type": "array",
|
|
223
|
+
"description": "Filter results by file extension (e.g., cs, prefab, mat)",
|
|
224
|
+
"items": {
|
|
225
|
+
"type": "string"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"AssetTypes": {
|
|
229
|
+
"type": "array",
|
|
230
|
+
"description": "Filter results by asset type (e.g., Texture2D, GameObject, MonoScript)",
|
|
231
|
+
"items": {
|
|
232
|
+
"type": "string"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"PathFilter": {
|
|
236
|
+
"type": "string",
|
|
237
|
+
"description": "Filter results by path pattern (supports wildcards)"
|
|
179
238
|
}
|
|
180
239
|
}
|
|
181
240
|
}
|
|
@@ -247,9 +306,10 @@
|
|
|
247
306
|
"Exact",
|
|
248
307
|
"Path",
|
|
249
308
|
"Regex",
|
|
250
|
-
"Contains"
|
|
309
|
+
"Contains",
|
|
310
|
+
"Selected"
|
|
251
311
|
],
|
|
252
|
-
"default": "
|
|
312
|
+
"default": "Exact"
|
|
253
313
|
},
|
|
254
314
|
"RequiredComponents": {
|
|
255
315
|
"type": "array",
|
|
@@ -263,7 +323,7 @@
|
|
|
263
323
|
"description": "Tag filter"
|
|
264
324
|
},
|
|
265
325
|
"Layer": {
|
|
266
|
-
"type": "
|
|
326
|
+
"type": "integer",
|
|
267
327
|
"description": "Layer filter"
|
|
268
328
|
},
|
|
269
329
|
"MaxResults": {
|
|
@@ -274,6 +334,10 @@
|
|
|
274
334
|
"IncludeInactive": {
|
|
275
335
|
"type": "boolean",
|
|
276
336
|
"description": "Include inactive GameObjects"
|
|
337
|
+
},
|
|
338
|
+
"IncludeInheritedProperties": {
|
|
339
|
+
"type": "boolean",
|
|
340
|
+
"description": "Include inherited properties"
|
|
277
341
|
}
|
|
278
342
|
}
|
|
279
343
|
}
|
|
@@ -317,6 +381,10 @@
|
|
|
317
381
|
"type": "string",
|
|
318
382
|
"description": "C# code to execute"
|
|
319
383
|
},
|
|
384
|
+
"Parameters": {
|
|
385
|
+
"type": "object",
|
|
386
|
+
"description": "Runtime parameters for execution"
|
|
387
|
+
},
|
|
320
388
|
"CompileOnly": {
|
|
321
389
|
"type": "boolean",
|
|
322
390
|
"description": "Compile only without execution"
|
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* This file exists to avoid bundling the entire package.json into the CLI bundle.
|
|
5
5
|
* This version is automatically updated by release-please.
|
|
6
6
|
*/
|
|
7
|
-
export const VERSION = '0.67.
|
|
7
|
+
export const VERSION = '0.67.3'; // x-release-please-version
|