We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3ebaa7 commit f3a628fCopy full SHA for f3a628f
2 files changed
npm-app/release-legacy/index.js
@@ -92,9 +92,7 @@ function httpGet(url, options = {}) {
92
93
async function getLatestLegacyVersion() {
94
try {
95
- const res = await httpGet(
96
- `https://registry.npmjs.org/${packageName}/legacy`,
97
- )
+ const res = await httpGet(`https://registry.npmjs.org/codebuff/legacy`)
98
99
if (res.statusCode !== 200) return null
100
npm-app/release/index.js
async function getLatestVersion() {
- `https://registry.npmjs.org/${packageName}/latest`,
+ const res = await httpGet(`https://registry.npmjs.org/codebuff/latest`)
0 commit comments