d5f55b5f9c
Coverage / build (push) Has been cancelled
Docker / Build (push) Has been cancelled
Docker / Publish (push) Has been cancelled
Node.js CI / build (16, macos-latest) (push) Has been cancelled
Node.js CI / build (16, ubuntu-latest) (push) Has been cancelled
Node.js CI / build (16, windows-latest) (push) Has been cancelled
NPM / Build (22) (push) Has been cancelled
NPM / Pack (push) Has been cancelled
NPM / Publish (push) Has been cancelled
14 lines
412 B
JavaScript
14 lines
412 B
JavaScript
#!/usr/bin/env node
|
|
import { OFFICIAL_PUPPET_DEPENDENCIES } from '../src/puppet-config.js'
|
|
|
|
async function main () {
|
|
const puppetNameList = Object.keys(OFFICIAL_PUPPET_DEPENDENCIES)
|
|
const publicNameList = puppetNameList.filter(name => /^[^@]/.test(name))
|
|
const urlPath = publicNameList.join('-vs-')
|
|
const url = 'https://www.npmtrends.com/' + urlPath
|
|
console.info(url)
|
|
}
|
|
|
|
main()
|
|
.catch(console.error)
|