We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eda1f5 commit 5cd1760Copy full SHA for 5cd1760
.gitignore
@@ -6,6 +6,8 @@ node_modules
6
lib
7
*.log
8
*.swp
9
+*.tgz
10
+*.zip
11
*~
12
!temp/.gitkeep
13
temp/*.json
scripts/release.sh
@@ -2,13 +2,6 @@
2
3
set -xe
4
5
-if [[ ! -z ${PNPM_INSTALL} ]] ; then
- # Restore all git changes
- git restore --source=HEAD --staged --worktree -- package.json pnpm-lock.yaml
- # Install pnpm
- pnpm install --no-frozen-lockfile
-fi
-
# Check edge release
if [[ ! -z ${EDGE_RELEASE} ]] ; then
14
npx jiti ./scripts/bump-edge
@@ -19,7 +12,6 @@ if [[ ! -z ${NPM_TOKEN} ]] ; then
19
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
20
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
21
echo "always-auth=true" >> ~/.npmrc
22
- npm whoami
23
15
fi
24
16
25
17
# Release packages
0 commit comments