Skip to content

Commit af7eea7

Browse files
author
Test User
committed
chore: update npm registry URLs to use HTTP
- Change registry URLs in .npmrc, package.json, and release workflow to HTTP from HTTPS for consistency.
1 parent e36188c commit af7eea7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
uses: actions/setup-node@v4
157157
with:
158158
node-version: ${{ env.NODE_VERSION }}
159-
registry-url: 'https://registry.npmjs.org'
159+
registry-url: 'http://registry.npmjs.org'
160160
env:
161161
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
162162

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ registry=https://registry.npmjs.org/
1111
# npm config set npm-two-factor-auth publish-only
1212

1313
# Optional: Set scope if publishing under organization
14-
# @scope:registry=https://registry.npmjs.org/
14+
# @scope:registry=http://registry.npmjs.org/
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
],
5858
"publishConfig": {
5959
"access": "public",
60-
"registry": "https://registry.npmjs.org/"
60+
"registry": "http://registry.npmjs.org/"
6161
}
6262
}
6363

0 commit comments

Comments
 (0)