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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-05fix(npm) pass npm context everywhereGar
Instead of files randomly requiring the npm singleton, we pass it where it needs to go so that tests don't need to do so much require mocking everywhere PR-URL: https://github.com/npm/cli/pull/2772 Credit: @wraithgar Close: #2772 Reviewed-by: @ruyadorno
2021-02-25chore(refactor): promisify completion scriptsGar
We also removed the "none" script because we handle a missing script just fine. There is no need to put an empty one in PR-URL: https://github.com/npm/cli/pull/2759 Credit: @wraithgar Close: #2759 Reviewed-by: @nlf
2021-02-11fix(env): Do not clobber defined 'env' scriptisaacs
If an env script is already defined, run that instead of the default. PR-URL: https://github.com/npm/cli/pull/2655 Credit: @isaacs Close: #2655 Reviewed-by: @ljharb
2020-11-17lint tests before publishingisaacs
We have a lot of tests that were not handling errors in callbacks, not defining variables, defining variables that weren't used, and just generally not formatted like the rest of npm. Hazard of moving fast. Thankfully, machines can help.
2020-11-06run: default the 'start' script when server.js presentisaacs
2020-10-30fix: in run-script, if loglevel is silent, disable banner optionMichele Azzolari
Fixes issue #2023 PR-URL: https://github.com/npm/cli/pull/2086 Credit: @macno Close: #2086 Reviewed-by: @nlf
2020-10-20fix: don't suppress run output when `--silent` is passedGareth Jones
PR-URL: https://github.com/npm/cli/pull/1987 Credit: @G-Rath Close: #1987 Reviewed-by: @ruyadorno
2020-08-25feat: add ability to skip pre/post hooksRuy Adorno
Implement support to `ignoreScripts` config option in `npm run-script` allowing for skipping pre and post hooks when used as discussed in RFC-0029. ref: https://github.com/npm/rfcs/blob/ed67c2bc41873d8f1954f8ce4a8f00437f5f14eb/accepted/0029-add-ability-to-skip-hooks.md PR-URL: https://github.com/npm/cli/pull/1718 Credit: @ruyadorno Close: #1718 Reviewed-by: @isaacs
2020-07-30unit tests for npm run-scriptisaacs