eprolo-cli 1.0.20 → 1.0.21
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/bin/eprolo-cli.js +0 -7
- package/package.json +1 -1
package/bin/eprolo-cli.js
CHANGED
|
@@ -212,13 +212,6 @@ async function main() {
|
|
|
212
212
|
const args = parseArgs(process.argv.slice(2));
|
|
213
213
|
const [group, command] = args._;
|
|
214
214
|
const baseUrl = args.baseUrl || BASE_URL;
|
|
215
|
-
const auth = requireAuth(args);
|
|
216
|
-
const target = requireTaskTarget(args);
|
|
217
|
-
printResult(await postJson(baseUrl, "", {
|
|
218
|
-
planId: args.planId,
|
|
219
|
-
userCode: auth.userCode,
|
|
220
|
-
storeName: target.storeName
|
|
221
|
-
}), args.json);
|
|
222
215
|
if (!group || args.help || args.h) {
|
|
223
216
|
printHelp();
|
|
224
217
|
return;
|
package/package.json
CHANGED