From cd75eeca84e3d090c68852a44e5e7c2dc3cdaec1 Mon Sep 17 00:00:00 2001 From: Julien Ganichot Date: Tue, 31 Oct 2023 11:38:04 +0100 Subject: [PATCH] fix: build script --- scripts/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 185078a4..d3af1141 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -3,8 +3,8 @@ set -ex # Workaround https://github.com/zeit/ncc/issues/457. -mv tsconfig.production.json tsconfig.temp.json -mv tsconfig.json tsconfig.json +mv tsconfig.json tsconfig.temp.json +mv tsconfig.production.json tsconfig.json ncc build src/index.ts \ --external @semantic-release/changelog \