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: 52c2be24b74aca25d71ae907e461552a3f2af072
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,177 additions and 4,889 deletions.
  1. +1 −0 .github/CODEOWNERS
  2. +2 −0 .github/settings.yml
  3. +6 −2 .travis.yml
  4. +306 −196 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. +0 −7 PULL_REQUEST_TEMPLATE
  10. +8 −2 README.md
  11. +2 −2 appveyor.yml
  12. +2 −2 bin/package.template.json
  13. +9 −9 child.js
  14. +16 −16 get-prefix.js
  15. +30 −24 index.js
  16. +0 −29 locales/ar.json
  17. +2 −1 locales/en.json
  18. +14 −15 locales/fr.json
  19. +9 −9 locales/ko.json
  20. +19 −19 locales/pt_BR.json
  21. +2 −1 locales/zh_CN.json
  22. +5,497 −4,024 package-lock.json
  23. +22 −24 package.json
  24. +71 −67 parse-args.js
  25. +20 −10 test/child.js
  26. +2 −13 test/get-prefix.js
  27. +111 −1 test/index.js
  28. +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