We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba65f3 commit 8aab79aCopy full SHA for 8aab79a
jupyter_releaser/npm.py
@@ -131,8 +131,8 @@ def handle_npm_config(npm_token):
131
"""Handle npm_config"""
132
npmrc = Path(".npmrc")
133
registry = os.environ.get("NPM_REGISTRY", "https://registry.npmjs.org/")
134
- registry = registry.replace('https:', '')
135
- registry = registry.replace('http:', '')
+ registry = registry.replace("https:", "")
+ registry = registry.replace("http:", "")
136
text = f"registry={registry}"
137
if npm_token:
138
text += f"\n{registry}:_authToken={npm_token}"
0 commit comments