From cabbfae4eecb7a2e3fff81381d1a23d74013cf8c Mon Sep 17 00:00:00 2001 From: James P Date: Wed, 20 Mar 2024 11:41:31 -0500 Subject: [PATCH] Renamed make-listing to make-index --- package.json | 2 +- scripts/{make-listing.js => make-index.js} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{make-listing.js => make-index.js} (97%) diff --git a/package.json b/package.json index 80894b86b..0c7b33b61 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "storage" ], "bin": { - "make-listing": "./scripts/make-listing.js" + "make-index": "./scripts/make-index.js" }, "type": "module", "homepage": "https://github.com/browser-fs/core", diff --git a/scripts/make-listing.js b/scripts/make-index.js similarity index 97% rename from scripts/make-listing.js rename to scripts/make-index.js index 0f171099a..346d098f6 100755 --- a/scripts/make-listing.js +++ b/scripts/make-index.js @@ -11,7 +11,7 @@ const { options: { help: { short: 'h', type: 'boolean', default: false }, ignore: { short: 'i', type: 'string', multiple: true, default: [] }, - output: { short: 'o', type: 'string', default: 'listing.json' }, + output: { short: 'o', type: 'string', default: 'index.json' }, quiet: { short: 'q', type: 'boolean', default: false }, verbose: { type: 'boolean', default: false }, },