From 855f822587757bf46f228534f785b70bf8692cb1 Mon Sep 17 00:00:00 2001 From: freearhey Date: Sat, 10 Jun 2023 01:37:09 +0300 Subject: [PATCH] Rename to report:create --- package.json | 3 ++- scripts/commands/{issue/check.js => report/create.js} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename scripts/commands/{issue/check.js => report/create.js} (100%) diff --git a/package.json b/package.json index fbd36ac35..8326ba89c 100644 --- a/package.json +++ b/package.json @@ -5,17 +5,18 @@ "api:generate": "node scripts/commands/api/generate.js", "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git -x", "db:create": "node scripts/commands/database/create.js", - "issue:check": "node scripts/commands/issue/check.js", "playlist:format": "node scripts/commands/playlist/format.js", "playlist:generate": "node scripts/commands/playlist/generate.js", "playlist:validate": "node scripts/commands/playlist/validate.js", "playlist:lint": "npx m3u-linter -c m3u-linter.json", "playlist:deploy": "npx gh-pages-clean && npx gh-pages -m \"Deploy to GitHub Pages\" -d .gh-pages -r https://$GITHUB_TOKEN@github.com/iptv-org/iptv.git -x", "readme:update": "node scripts/commands/readme/update.js", + "report:create": "node scripts/commands/report/create.js", "format": "npm run db:create && npm run playlist:format", "check": "npm run api:load && npm run playlist:lint && npm run playlist:validate", "update": "npm run api:load && npm run db:create && npm run playlist:generate && npm run api:generate && npm run readme:update", "deploy": "npm run playlist:deploy && npm run api:deploy", + "report": "npm run api:load && npm run report:create", "test": "jest --runInBand" }, "jest": { diff --git a/scripts/commands/issue/check.js b/scripts/commands/report/create.js similarity index 100% rename from scripts/commands/issue/check.js rename to scripts/commands/report/create.js