From 7b4b72166f6a29d63e4849968e540a707993b19d Mon Sep 17 00:00:00 2001 From: Nybkox Date: Tue, 4 Mar 2025 20:54:11 +0100 Subject: [PATCH] chore: move sortJsonKeys helper --- common/translations-cli/helpers.js | 2 +- common/{ => translations-cli}/sortJsonKeysAlphabetically.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename common/{ => translations-cli}/sortJsonKeysAlphabetically.js (100%) diff --git a/common/translations-cli/helpers.js b/common/translations-cli/helpers.js index 53f61cb53..b153eb6f9 100644 --- a/common/translations-cli/helpers.js +++ b/common/translations-cli/helpers.js @@ -2,7 +2,7 @@ const path = require('path'); const fs = require('fs'); const { defaultLanguage } = require('./constants'); -const sortJsonKeysAlphabetically = require('../sortJsonKeysAlphabetically'); +const sortJsonKeysAlphabetically = require('./sortJsonKeysAlphabetically'); /** * @param {string} file diff --git a/common/sortJsonKeysAlphabetically.js b/common/translations-cli/sortJsonKeysAlphabetically.js similarity index 100% rename from common/sortJsonKeysAlphabetically.js rename to common/translations-cli/sortJsonKeysAlphabetically.js