Skip to content

Commit 2df9fb3

Browse files
committed
feat: using cli args for consistency
1 parent b3092ff commit 2df9fb3

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

tools/check-products-count.js

+15-8
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,27 @@ governing permissions and limitations under the License.
1212

1313
require('dotenv').config();
1414

15+
const { program } = require('commander');
1516
const { requestSaaS, requestSpreadsheet } = require('../actions/utils');
1617
const { GetAllSkusPaginatedQuery } = require('../actions/queries');
1718

1819
async function main() {
1920
// TODO: fetch from app.config.yaml (incl. mapped env vars)?
2021
// https://jira.corp.adobe.com/browse/SITES-28254
21-
const {
22-
COMMERCE_STORE_CODE: storeCode,
23-
COMMERCE_STORE_URL: storeUrl,
24-
COMMERCE_CONFIG_NAME: configName,
25-
// eslint-disable-next-line no-undef
26-
} = process.env;
27-
28-
const context = { storeCode, storeUrl, configName };
22+
program
23+
.option('-h, --help', 'Display help for cli')
24+
.option('-s, --storecode <storecode>', 'Commerce Store Code')
25+
.option('-c, --config <config>', 'Config name')
26+
.option('-u, --url <url>', 'Root URL of the store')
27+
28+
program.parse(process.argv);
29+
const options = program.opts();
30+
31+
if (options.help || !options.storecode || !options.config || !options.url) {
32+
program.help();
33+
}
34+
35+
const context = { storeCode: options.storecode, storeUrl: options.url, configName: options.config };
2936
const { total: actualCount } = await requestSpreadsheet('published-products-index', context);
3037
let [productsCount, currentPage, expectedCount] = [-1, 1, 0];
3138
while (productsCount !== 0) {

0 commit comments

Comments
 (0)