From e2a98e0e6fb3a679aa03ae2f987c1bdb96462207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Marti=CC=81nez=20Bernardo?= Date: Thu, 4 Dec 2025 16:05:49 +0100 Subject: [PATCH] Remove .js from dist dir --- .gitlab/scripts/publish_npm.sh | 1 - scripts/publish_prod.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/.gitlab/scripts/publish_npm.sh b/.gitlab/scripts/publish_npm.sh index 76b8c339..1492cb92 100755 --- a/.gitlab/scripts/publish_npm.sh +++ b/.gitlab/scripts/publish_npm.sh @@ -29,5 +29,4 @@ if [ -d "./dist" ]; then rm -rf ./dist fi yarn build -cp ./dist/handler.cjs ./dist/handler.js npm publish diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index 63d6e177..c1a21d98 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -95,7 +95,6 @@ else rm -rf ./dist fi yarn build - cp ./dist/handler.cjs ./dist/handler.js yarn publish --new-version "$NEW_VERSION" fi