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
2017-04-28cli: replace cli.js with bin/npm-cli.js and remove cli.js (#12096)Daijiro Wachi
* scripts: replace cli.js with npm-cli.js * cli: remove unused file cli.js * docs: replace cli.js with bin/npm-cli.js PR-URL: https://github.com/npm/npm/pull/12096 Credit: @watilde Reviewed-By: @zkat
2017-04-21tooling: dev-dep-update should add shrinkwrap tooRebecca Turner
2017-03-25script: fix lint errorDaijiro Wachi
PR-URL: https://github.com/npm/npm/pull/16110 Credit: @watilde Reviewed-By: @iarna
2017-03-16scripts: Allow longer short-committishes when generating changelogsRebecca Turner
To support git 2.12.0 Credit: @iarna Reviewed-By: @zkat
2017-02-24scripts: Update dep-update to include shrinkwrap as wellRebecca Turner
Credit: @iarna
2016-11-04scripts: don't rely on latest being checked outForrest L Norvell
2016-10-25gen-changelog: change default branch to latestKat Marchán
Credit: @zkat Reviewed-By: @iarna
2016-10-25maketest: Make the test boilerplate prefer our config over envRebecca Turner
Credit: @iarna
2016-10-07scripts: Add dep-update & dev-dep-updateRebecca Turner
Scripts @iarna uses when updating dependencies in npm. Credit: @iarna
2016-09-10gen-changelog: Fix the missing/double hashmarks issueRebecca Turner
2016-09-09scripts: Fix fixture creation/cleanup in maketestRebecca Turner
Credit: @iarna
2016-09-09scripts: Add helper for generating test skeletonsRebecca Turner
Credit: @iarna
2016-08-12scripts: update changelog generatorRebecca Turner
2016-07-08scripts: Match non-npm URLs in fixes for changelogsRebecca Turner
2016-07-06scripts: Update changelog generator to support Fixes URLsRebecca Turner
2016-02-19gen-changelog: Support multiple creditsRebecca Turner
2016-01-21scripts: Add @iarna's changelog generator toolRebecca Turner
PR-URL: https://github.com/npm/npm/pull/11077 Credit: @iarna Reviewed-By: ¯\_(ツ)_/¯ Reviewed-By: @othiym23
2015-10-22src: Update formatting to be compatible with standard@5Sebastiaan Deckers
PR-URL: https://github.com/npm/npm/pull/9954
2015-10-16src: install npm@3 with npm@2Forrest L Norvell
Restore the ability to do one-shot upgrades from the versions of npm bundled with Node 0.8 to npm@3, which simplifies using Travis with old Node and new npm, for compatibility testing purposes. Older versions of npm repack packages on install, which works poorly with the way npm@3 handles bundledDependencies with flat trees. Fixes: #9668 PR-URL: https://github.com/npm/npm/pull/9981
2015-08-21doc: stop building HTML partialsisaacs
This reverts commit 8b58ad09b719295461167a34f666c5aa4d6e26f2. As it turned out, those partial docs aren't actually used by the http://docs.npmjs.com site, so there's no sense slowing down the build. PR-URL: https://github.com/npm/npm/pull/9201
2015-07-24build: use npm being released during releaseKat Marchán
There was some weirdness going on where, depending on your local setup during release, you could get unexpected results during build (specifically, the version on the tarball and zip corresponded to your global npm's version) I went ahead and also made it so the npm pack is also done by the version getting released, to avoid any possible issues with 2.x vs 3.x PR-URL: https://github.com/npm/npm/pull/9012
2015-06-26src: make the npm source comply with `standard`Forrest L Norvell
This is a huge set of mostly mechanical changes. Going forward, all changes to the npm source base are expected to comply with `standard`, and it's been integrated into the test suite to enforce that. There are a few notes below about specific classes of changes that need to be handled specially for npm's code base. standard: "Expected error to be handled." `standard` only expects errors spelled "err" to be handled. `npm-registry-mock` never actually invokes its callback with an error, so in some cases I just changed it to be spelled "er" and called it good. standard: "Expected a "break" statement before 'case'." This behavior is actually on purpose, and I don't feel like rewriting the affected code right now (or, you know, ever). So I added code comments disabling the checks in the three applicable changes. standard: "x is a function." Rebinding functions created via declarations (as opposed to expressions) is a no-no? PR-URL: https://github.com/npm/npm/pull/8668
2015-06-26building npm: Yell if you try to package npm@3 with npm@2Rebecca Turner
npm@2's packager can't handle npm@3's bundled node_modules, so you either have to use a version that we've built for you (eg one published to the registry) or use the one that you're building.
2015-05-22doc: use a preversion script to update AUTHORSForrest L Norvell
2015-03-27Switching minutes and monthsMEDDAH Julien
2015-03-12doc: use perl in update-authors.sh instead of awkKenan Yildirim
As a consequence of the various implementations of AWK across platforms, the use of AWK in `scripts/update-authors.sh` might result in different sorting behavior on different platforms (i.e. BSD awk on OS X does not maintain the desired sort- by-first-contribution). So, let's use Perl instead.
2015-01-24add script for updating AUTHORS fileKenan Yildirim
2014-12-11install.sh: Drop support for node <0.8, remove engines bitsisaacs
2014-10-24perl 5.18.x doesn't like -pi without filenamesForrest L Norvell
2014-09-30doc: build partial html content as well as full-baked pagesisaacs
The better to docs.npmjs.com for great good
2014-09-11s/ronn/marked-man/gisaacs
2014-08-22doc: Fix 'npm help index'isaacs
This fixes the doc builder script so that the appropriate numbers get printed into the links, and so that 'npm help index' isn't all wonky in its formatting.
2014-08-15Add script to output 'v1.4-next' publish tagisaacs
2014-06-28Allow to build all the docs OOTB.GeJ
Since 1.4.10, the html docs are generated via the marked module. when doing the usual "make" dance, the build process stops when attempting to generate the first html doc complaining about a missing node_modules/.bin/marked. This patch is a quick'n'dirty copy-pasta of the treatment applied to load the ronn module but applied to marked. When applied against the 1.4.13 tarball it allows -- at least in a works-for-me manner -- to generate all the docs.
2014-05-02Use marked instead of ronn for html docsisaacs
2014-05-01Do not replace the canonical url for README.html on doc buildingRobert Kowalski
Closes #5111
2014-04-13doc: Add canonical urlisaacs
2014-02-26Move toc.js script into a fileisaacs
2014-02-16Follow redirects on curl|sh installer scriptisaacs
Closes #4673
2013-11-12#3759: do not install npm on node <= v0.5Alex Rodionov
2013-07-12doc: Build index and readme html properlyisaacs
2013-07-12doc: update index builder for new formatisaacs
2013-07-12doc: update build scripts for new structureisaacs
2013-07-11doc: build sections 5 and 7isaacs
2013-06-22Fix the environment used for the doc-build script.Florian Margaine
Fixes #2004.
2012-10-04Fix #2850 Use https url for npmjs.org in docs etc.isaacs
2012-07-23Don't remove stuff from release tarballsisaacs
Makes for weird behavior when installed along with node
2012-07-13Fix relocate script properlyisaacs
2012-07-13Add a script to point the shebang at something elseisaacs
2012-04-07Sort output of fs.readdir to ensure an ordered command list.Martin Cooper