We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfdfa2 commit eb60d6bCopy full SHA for eb60d6b
.nvmrc
@@ -0,0 +1 @@
1
+14
scripts/release.js
@@ -95,7 +95,7 @@ function tryPublishAndTag(version) {
95
function tagAndPublish(newVersion) {
96
console.log(`trying to publish ${newVersion}...`);
97
exec.execSync(`npm --no-git-tag-version version ${newVersion}`);
98
- exec.execSync(`npm publish --tag ${VERSION_TAG}`);
+ // exec.execSync(`npm publish --tag ${VERSION_TAG}`);
99
exec.execSync(`git tag -a ${newVersion} -m "${newVersion}"`);
100
exec.execSyncSilent(`git push deploy ${newVersion} || true`);
101
if (isRelease) {
0 commit comments