@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
16 lines (14 loc) • 419 B
JavaScript
const normalizeUrl = require('normalize-url');
module.exports = (
{name},
{env: {DEFAULT_NPM_REGISTRY = 'https://registry.npmjs.org/'}, nextRelease: {version}},
distTag,
registry
) => ({
name: `npm package (@${distTag} dist-tag)`,
url:
normalizeUrl(registry) === normalizeUrl(DEFAULT_NPM_REGISTRY)
? `https://www.npmjs.com/package/${name}/v/${version}`
: undefined,
channel: distTag,
});