From f15235aff45f63bedf72d62d813fc52a811d73a3 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 26 Jan 2023 11:48:37 -0500 Subject: [PATCH] Remove dead scripts Signed-off-by: Sebastian Malton --- scripts/publish-extensions-npm.sh | 7 ------- scripts/publish-library-npm.sh | 7 ------- 2 files changed, 14 deletions(-) delete mode 100755 scripts/publish-extensions-npm.sh delete mode 100755 scripts/publish-library-npm.sh diff --git a/scripts/publish-extensions-npm.sh b/scripts/publish-extensions-npm.sh deleted file mode 100755 index a715bc73d4..0000000000 --- a/scripts/publish-extensions-npm.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -./node_modules/.bin/npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - -NPM_RELEASE_TAG=$(cat package.json | jq .version --raw-output | rg '.*-(?P\w+).*' -r '$channel' | cat) - -cd packages/extensions && npm publish --access=public --tag=${NPM_RELEASE_TAG:-latest} && git restore package.json diff --git a/scripts/publish-library-npm.sh b/scripts/publish-library-npm.sh deleted file mode 100755 index 6fdd16e8a8..0000000000 --- a/scripts/publish-library-npm.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -./node_modules/.bin/npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - -NPM_RELEASE_TAG=$(cat package.json | jq .version --raw-output | rg '.*-(?P\w+).*' -r '$channel' | cat) - -npm publish --access=public --tag=${NPM_RELEASE_TAG:-latest}