From 13f0b02472e09458da2f51f97ee65397e5ad4e13 Mon Sep 17 00:00:00 2001 From: Marius Begby Date: Mon, 17 Jul 2023 18:59:12 +0200 Subject: [PATCH] fix: Changed name of deploy slash commands --- package.json | 4 ++-- .../{deploy-slash-commands.js => deploySlashCommands.js} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/utils/{deploy-slash-commands.js => deploySlashCommands.js} (100%) diff --git a/package.json b/package.json index eeacf7a0..1e7cb211 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "test": "echo \"Error: no test specified\" && exit 1", "start": "node ./src/index.js", "start-pretty": "node ./src/index.js | pino-pretty", - "deploy": "node ./src/utils/deploy-slash-commands.js", - "deploy-pretty": "node ./src/utils/deploy-slash-commands.js | pino-pretty", + "deploy": "node ./src/utils/deploySlashCommands.js", + "deploy-pretty": "node ./src/utils/deploySlashCommands.js | pino-pretty", "eslint": "eslint ./" }, "dependencies": { diff --git a/src/utils/deploy-slash-commands.js b/src/utils/deploySlashCommands.js similarity index 100% rename from src/utils/deploy-slash-commands.js rename to src/utils/deploySlashCommands.js