Welcome to mirror list, hosted at ThFree Co, Russian Federation.

npx-cli.js « bin - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4043650599d77aa41501c0de95f9f06f94fe810 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env node

const npx = require('libnpx')
const path = require('path')

const NPM_PATH = path.join(__dirname, 'npm-cli.js')

npx(npx.parseArgs(process.argv, NPM_PATH))