From aa7dbab2b7045ae1507f6d75ab4e63181a251965 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Wed, 30 Jul 2025 10:35:10 -0500 Subject: [PATCH] Remove package.json As ncc uses commonjs bundle type and we import `install-cli-action` which is also commonjs, we should not set `type: module` in the package.json so it doesn't break the load-secrets-action bundle. Therefore, we can safely remove it at all. Revert package.json --- dist/package.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 dist/package.json diff --git a/dist/package.json b/dist/package.json deleted file mode 100644 index 3dbc1ca..0000000 --- a/dist/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "type": "module" -}