From 66f87551998efd94e910f5b4a51ad4b17413fd87 Mon Sep 17 00:00:00 2001 From: Matthijs Laan Date: Thu, 23 Jan 2025 16:46:37 +0100 Subject: [PATCH] Rename --- .github/workflows/test-and-deploy.yml | 2 +- bin/{post-build-localized.js => post-build-version-info.js} | 0 package.json | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{post-build-localized.js => post-build-version-info.js} (100%) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index d9be42c..e0d75d3 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -103,7 +103,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - # If tags aren't fetched the bin/post-build-localized.js script will leave fields in generated/version.json empty + # If tags aren't fetched the bin/post-build-version-info.js script will leave fields in generated/version.json empty # https://github.com/actions/checkout/issues/701 fetch-depth: 0 - name: 'GitHub Slug Action' diff --git a/bin/post-build-localized.js b/bin/post-build-version-info.js similarity index 100% rename from bin/post-build-localized.js rename to bin/post-build-version-info.js diff --git a/package.json b/package.json index 41caef5..192782c 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "start-nl": "ng serve app --configuration=nl", "build": "ng build app", "build-localized": "ng build app --localize", - "postbuild-localized": "node bin/post-build-localized.js && node bin/post-build-compress.js", + "postbuild-localized": "node bin/post-build-version-info.js && node bin/post-build-compress.js", "watch": "ng build --watch --configuration development app", "test": "jest --max-workers=4", "test:ci": "jest --ci --collect-coverage --reporters=default --reporters=jest-junit",