meocli 0.1.7 → 0.1.8
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 +624 -113
- package/dist/commands/js/clash.d.ts +1 -0
- package/dist/commands/js/clash.js +118 -449
- package/dist/lib/ast.js +7 -1
- package/oclif.manifest.json +44 -39
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -143,6 +143,49 @@
|
|
|
143
143
|
"world.js"
|
|
144
144
|
]
|
|
145
145
|
},
|
|
146
|
+
"js:clash": {
|
|
147
|
+
"aliases": [],
|
|
148
|
+
"args": {
|
|
149
|
+
"filePath": {
|
|
150
|
+
"description": "目标js文件路径",
|
|
151
|
+
"name": "filePath",
|
|
152
|
+
"required": true
|
|
153
|
+
},
|
|
154
|
+
"templatePath": {
|
|
155
|
+
"description": "template.json配置文件路径",
|
|
156
|
+
"name": "templatePath",
|
|
157
|
+
"required": true
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"description": "修改Clash脚本",
|
|
161
|
+
"examples": [
|
|
162
|
+
"<%= config.bin %> <%= command.id %> ./test.js ./template.json"
|
|
163
|
+
],
|
|
164
|
+
"flags": {
|
|
165
|
+
"verbose": {
|
|
166
|
+
"char": "v",
|
|
167
|
+
"description": "Show verbose output",
|
|
168
|
+
"name": "verbose",
|
|
169
|
+
"allowNo": false,
|
|
170
|
+
"type": "boolean"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"hasDynamicHelp": false,
|
|
174
|
+
"hiddenAliases": [],
|
|
175
|
+
"id": "js:clash",
|
|
176
|
+
"pluginAlias": "meocli",
|
|
177
|
+
"pluginName": "meocli",
|
|
178
|
+
"pluginType": "core",
|
|
179
|
+
"strict": true,
|
|
180
|
+
"enableJsonFlag": false,
|
|
181
|
+
"isESM": true,
|
|
182
|
+
"relativePath": [
|
|
183
|
+
"dist",
|
|
184
|
+
"commands",
|
|
185
|
+
"js",
|
|
186
|
+
"clash.js"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
146
189
|
"prettier": {
|
|
147
190
|
"aliases": [],
|
|
148
191
|
"args": {
|
|
@@ -233,45 +276,7 @@
|
|
|
233
276
|
"prettier",
|
|
234
277
|
"reset.js"
|
|
235
278
|
]
|
|
236
|
-
},
|
|
237
|
-
"js:clash": {
|
|
238
|
-
"aliases": [],
|
|
239
|
-
"args": {
|
|
240
|
-
"filePath": {
|
|
241
|
-
"description": "目标js文件路径",
|
|
242
|
-
"name": "filePath",
|
|
243
|
-
"required": true
|
|
244
|
-
}
|
|
245
|
-
},
|
|
246
|
-
"description": "修改Clash脚本",
|
|
247
|
-
"examples": [
|
|
248
|
-
"<%= config.bin %> <%= command.id %> ./tests/test.js"
|
|
249
|
-
],
|
|
250
|
-
"flags": {
|
|
251
|
-
"verbose": {
|
|
252
|
-
"char": "v",
|
|
253
|
-
"description": "Show verbose output",
|
|
254
|
-
"name": "verbose",
|
|
255
|
-
"allowNo": false,
|
|
256
|
-
"type": "boolean"
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
"hasDynamicHelp": false,
|
|
260
|
-
"hiddenAliases": [],
|
|
261
|
-
"id": "js:clash",
|
|
262
|
-
"pluginAlias": "meocli",
|
|
263
|
-
"pluginName": "meocli",
|
|
264
|
-
"pluginType": "core",
|
|
265
|
-
"strict": true,
|
|
266
|
-
"enableJsonFlag": false,
|
|
267
|
-
"isESM": true,
|
|
268
|
-
"relativePath": [
|
|
269
|
-
"dist",
|
|
270
|
-
"commands",
|
|
271
|
-
"js",
|
|
272
|
-
"clash.js"
|
|
273
|
-
]
|
|
274
279
|
}
|
|
275
280
|
},
|
|
276
|
-
"version": "0.1.
|
|
281
|
+
"version": "0.1.8"
|
|
277
282
|
}
|