Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: npm/npx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9904bc6543e9cd5b400790b05d72e8d45d35de80
Choose a base ref
...
head repository: npm/npx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 84eeb547522b8bdfcb0949d4a6a725613932ec85
Choose a head ref
Loading
Showing with 6,624 additions and 5,587 deletions.
  1. +1 −0 .github/CODEOWNERS
  2. +2 −0 .github/settings.yml
  3. +6 −2 .travis.yml
  4. +366 −174 CHANGELOG.md
  5. +0 −151 CODE_OF_CONDUCT.md
  6. +0 −256 CONTRIBUTING.md
  7. +0 −7 ISSUE_TEMPLATE
  8. +15 −2 LICENSE.md
  9. +2 −2 Makefile
  10. +0 −7 PULL_REQUEST_TEMPLATE
  11. +8 −2 README.md
  12. +2 −2 appveyor.yml
  13. +2 −2 bin/package.template.json
  14. +9 −9 child.js
  15. +16 −16 get-prefix.js
  16. +55 −25 index.js
  17. +2 −1 locales/en.json
  18. +14 −15 locales/fr.json
  19. +29 −0 locales/id.json
  20. +29 −0 locales/ko.json
  21. +29 −0 locales/nb.json
  22. +29 −0 locales/nl.json
  23. +30 −0 locales/nn.json
  24. +29 −0 locales/no.json
  25. +29 −0 locales/pl.json
  26. +19 −19 locales/pt_BR.json
  27. +3 −4 locales/ru.json
  28. +29 −0 locales/sr.json
  29. +29 −0 locales/uk.json
  30. +2 −1 locales/zh_CN.json
  31. +5,587 −4,765 package-lock.json
  32. +22 −24 package.json
  33. +71 −67 parse-args.js
  34. +20 −10 test/child.js
  35. +2 −13 test/get-prefix.js
  36. +125 −11 test/index.js
  37. +11 −0 test/util/npx-bin-inherit-stdio.js
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @npm/cli-team
2 changes: 2 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
_extends: 'open-source-project-boilerplate'
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
language: node_js
sudo: false
node_js:
- "12"
- "10"
- "8"
- "7"
- "6"
- "4"

before_install:
- npm install -g npm@latest

cache:
directories:
- $HOME/.npm
Loading