diff --git a/scripts/alpha-publish.sh b/scripts/alpha-publish.sh deleted file mode 100755 index dadaad1b7..000000000 --- a/scripts/alpha-publish.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# Get the last tag from GitHub -lastTag=$(git describe --tags $(git rev-list --tags --max-count=1)) - -# Print it to the console for verification -echo "Bumping version to new tag: ${lastTag}" - -# Publish to NPM -npm publish --tag alpha diff --git a/scripts/beta-publish.sh b/scripts/beta-publish.sh deleted file mode 100755 index 4888ae472..000000000 --- a/scripts/beta-publish.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# Get the last tag from GitHub -lastTag=$(git describe --tags $(git rev-list --tags --max-count=1)) - -# Print it to the console for verification -echo "Bumping version to new tag: ${lastTag}" - -# Publish to NPM -npm publish --tag beta diff --git a/scripts/publish.sh b/scripts/publish.sh index a8974ff8f..7f5c535eb 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -7,4 +7,4 @@ lastTag=$(git describe --tags $(git rev-list --tags --max-count=1)) echo "Bumping version to new tag: ${lastTag}" # Publish to NPM -npm publish --tag beta --registry https://registry.npmjs.org/ +npm publish --tag next --registry https://registry.npmjs.org/