From 51c02821575d80035ebe853492d110db11a7d1b9 Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 14 Aug 2019 12:45:37 -0700 Subject: [PATCH] bin-links@1.1.3 --- node_modules/bin-links/CHANGELOG.md | 5 + .../node_modules/cmd-shim/.travis.yml | 19 - .../bin-links/node_modules/cmd-shim/LICENSE | 15 - .../bin-links/node_modules/cmd-shim/README.md | 44 --- .../node_modules/cmd-shim/cmd-shim-2.0.2.tgz | Bin 5643 -> 0 bytes .../bin-links/node_modules/cmd-shim/index.js | 247 ------------- .../cmd-shim/lib/to-batch-syntax.js | 52 --- .../node_modules/cmd-shim/package.json | 50 --- .../node_modules/cmd-shim/test/00-setup.js | 35 -- .../node_modules/cmd-shim/test/basic.js | 330 ------------------ .../cmd-shim/test/to-batch-syntax-tests.js | 25 -- .../node_modules/cmd-shim/test/zz-cleanup.js | 13 - node_modules/bin-links/package.json | 49 ++- package-lock.json | 25 +- package.json | 2 +- 15 files changed, 37 insertions(+), 874 deletions(-) delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/.travis.yml delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/LICENSE delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/README.md delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/cmd-shim-2.0.2.tgz delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/index.js delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/lib/to-batch-syntax.js delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/package.json delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/test/00-setup.js delete mode 100755 node_modules/bin-links/node_modules/cmd-shim/test/basic.js delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/test/to-batch-syntax-tests.js delete mode 100644 node_modules/bin-links/node_modules/cmd-shim/test/zz-cleanup.js diff --git a/node_modules/bin-links/CHANGELOG.md b/node_modules/bin-links/CHANGELOG.md index fb6bd0bd1e7b..e5293027887b 100644 --- a/node_modules/bin-links/CHANGELOG.md +++ b/node_modules/bin-links/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [1.1.3](https://github.com/npm/bin-links/compare/v1.1.2...v1.1.3) (2019-08-14) + + + ## [1.1.2](https://github.com/npm/bin-links/compare/v1.1.1...v1.1.2) (2018-03-22) diff --git a/node_modules/bin-links/node_modules/cmd-shim/.travis.yml b/node_modules/bin-links/node_modules/cmd-shim/.travis.yml deleted file mode 100644 index 1d38b470c67e..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: node_js - -node_js: - - node - - 12 - - 10 - - 8 - - 6 - -os: - - linux - - windows - -cache: - directories: - - $HOME/.npm - -notifications: - email: false diff --git a/node_modules/bin-links/node_modules/cmd-shim/LICENSE b/node_modules/bin-links/node_modules/cmd-shim/LICENSE deleted file mode 100644 index 20a476254092..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) npm, Inc. and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/bin-links/node_modules/cmd-shim/README.md b/node_modules/bin-links/node_modules/cmd-shim/README.md deleted file mode 100644 index 2b8b2f468f2c..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/README.md +++ /dev/null @@ -1,44 +0,0 @@ -# cmd-shim - -The cmd-shim used in npm to create executable scripts on Windows, -since symlinks are not suitable for this purpose there. - -On Unix systems, you should use a symbolic link instead. - -[![Build Status](https://img.shields.io/travis/npm/cmd-shim/master.svg)](https://travis-ci.org/npm/cmd-shim) -[![Dependency Status](https://img.shields.io/david/npm/cmd-shim.svg)](https://david-dm.org/npm/cmd-shim) -[![NPM version](https://img.shields.io/npm/v/cmd-shim.svg)](https://www.npmjs.com/package/cmd-shim) - -## Installation - -``` -npm install cmd-shim -``` - -## API - -### cmdShim(from, to, cb) - -Create a cmd shim at `to` for the command line program at `from`. -e.g. - -```javascript -var cmdShim = require('cmd-shim'); -cmdShim(__dirname + '/cli.js', '/usr/bin/command-name', function (err) { - if (err) throw err; -}); -``` - -### cmdShim.ifExists(from, to, cb) - -The same as above, but will just continue if the file does not exist. -Source: - -```javascript -function cmdShimIfExists (from, to, cb) { - fs.stat(from, function (er) { - if (er) return cb() - cmdShim(from, to, cb) - }) -} -``` diff --git a/node_modules/bin-links/node_modules/cmd-shim/cmd-shim-2.0.2.tgz b/node_modules/bin-links/node_modules/cmd-shim/cmd-shim-2.0.2.tgz deleted file mode 100644 index 2d4a9707554aba49d61eb143422f8db735402aec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5643 zcmV+m7WC;KiwFP!000006YV`~bK1zV=d-HvA0~>ufDHmWiL>P#ZdL z-dKhK6obUo2tUrQ&u_oo^N>al9*MD&vxO?Lq?zuXo}TWWo|hQe?Mu5y%lq}++F_&i zkB7J_mCDwO7bGhku8rqgkoWxMR%K&jYpVj!m5s{gs|~n62sepq%mUj7R_;qjREC82 z|B|cOr=;H4CHqdBx{Mmet~a{%onAj6`F4T0qhXQM-L^$+w?lS4H}IW{ap3vPFpjA| zbQp6ymjoUeGg>5VKrWJ@*KxXV2b8ksla9j#79~O7VT5_z;M(>n=|ZOM-WsE^Kk^tQ z*G|wUkcM|}9FQ)h1mOGBrx&-R=i6>TJ4G_`y(_0fJ3!42;14DCg?B}bcF4Kw1yCK% zGB0ryajLRLBWnA^afv+`AlnXQmSHqM)JWs#UGr1*qy}Ok$0tX>)%R+9#H=>p-6Yk+ zJ%T{hkIfH9Cu9#qw_mLvG)Q%Sp8(cL^{`p5HH=U7<_B_8dtW^P_#;38ViDoP-TjYy z^~3iZtA232Uxy+hY;yF@IH;ZMet_5N+xmXJ`8zN8UA=i&Ycwn%Kn{;c?YG)tlQcdc z5sjy}HL_o?zTK~pcSk2i_3(GnIIiv1tNTS@_oTMlga$oSPXNDr1a|+wAAuIYkiF_b z^*yq1LJ(EH8lOH?n~ftV@dRqs__*Ih?%$mp9gzK_1~N=OHfm5nwOK_}kQ*@DD3VVf zYQWkFa$G$$s=Lkl(IG-Zq0N&ja&TCCzh8e}JKU`y;t_{#9-RQ-N02HwG*iPL6uW|7Z<-}d~cikk*<;S{{dw|xl$=H8jMHQ z7q-YUX88ZD7q623e{*ANbLsyd@L%@x=bdIY;fjU2EHo{=O!5Y6!9?Cf=6#~Mf0CO16kJ|LPwHQFn}U(d~b*d ze;Ncb;l-jiG`CH1cq>MU?iD6Jds-edzkK1iWk><1-=QtH?YU46wFX`YC{h#<(?~& z?$~Vy*k$H}0vEez^}K2s9fJA-gb=68-}p0u-q-i83HAAFV2y0XKznQuCy>essH2N7 zv>jNN^p@p$D;F#X3~F|}pN|UYD*8x9FnsMhz;BMMlWqpH;_5PsgS~SGG#}G7trmr% z(5}<&S$3Vo6|Y%F{Sk-zc7q;8Wa$TwiNtPISfv8U@ zNO&02Ooj$PaKO%xLrdPc_bLKj#K63c5vpVl^5Ct&33t$0HE!K@9x3I_>PrEBC$Cb!J< z*RRtQDYM)2uoe+2tHy-d5-i}?7Sg$K0FVXlge&2D&H{@dM3_6T>U2=#)QzkK- zSa4i$>VpAjISlZT6hk`zSwW!T`L|h!qORDI8TGwOC;ddy+J-8y!eg=&xX``*YNJ{E zSG~Cl!CyuLWOx12!J#57!oxv;JfDYyh;|_!?%pnrEY!!PsbwT3y<8dsZ})O@X_DN} z&BY!_`V_)^jb@n-aZGad8udM!;WRW!xlH#8l7+*}q~X(GXXQ;6^8=7rCJG-tEwH4n zlT|#oFTlwX;Qifwqt@I%+O6)l{0#b;iNDt05is>elZ0Ib3PN@j`Ai%_upmJAJo3HX zP6{m(sX%J`joN$^MYB(X#1U!jU(KCW`LO-k`k%(@o!6_`WzR1UkOJpnRj6I8_vEU8 zeP@;&YlnN2MQ_gQGR537_s#cno?^^Bw+BV&AHVeQHxeS^kYTe&pmP z`?v|tbdoQ9uwucpPI0VDzdDiP58_wjiji=!N-gf`XO}~ozwM9)t$e4FEt)2DsG>dM zUJ%PLCrII^EZCTmPHjY|2c`LM`dNwNDy%EF#r_NOtju`&yXe} zG7E(mholr%!-Ul=oNo-B z79Kgx9XKs6ZpxCySB^$w>ciuuY2nf`I$B0Y3yY4j;*d}qA1f|;P$m``5#4|xv;lbm z^Wv;OU+}~FKS;#0oE4uV?$I~V%sn|CM@q#PJaw^C)lp;Ia%{5`l}R?DNJiNt9Fsf&JA(#x9S*zyroDi&>mf z`$6XoV}78esbwtlII&EepsqC!8qzGh*kxq%_l#_~qQqmH`z~881Ds`m^8f)3Xlk}c zd*nFh!T4B2xbwaDwlA;QmpcCe22O7lfAoW2Q_ufxynI>NOr8IJ^?Z5$<58}1nH;$= z0O9_jHGmi3FtDTT0E z*_ic-9}Tk!knue)D330C7Cb{|Z(_Yn$vkr1x0&E(;JDaZK{Yt_Uz4;6k4ydu%F?3& zysa6=(Cdr`xDqz<`~Xk0$U&4L@0Qc8-8f9os>>83eRRg``F5Lj$AeOrnex;NKWL-F zh?6&b!Ks)$Vq@aF%nH1>cF^ualoQxDIt*VvEC*ic0`p6Z14tw}9If4qu*~uw&stAg zY%Tw0n+KjPY?T%^OW_SBpZ-Bw!P)wbytmkTVNFXfp_iFT@ZN z0yHqkK;}$2Ux;Iau@5vap_S@ec$sL z*Ym1-i=P*OAZjS}la2i@Gz%GkS@>2|8GlIlfx;N?g1Ai27(YvH1y4!2e4RX?wICyV zU>?Z^({%BCo*X8Fw`fv6x*r2HWt>?26{8k(F+$4aTf5LuHB zKdG7Bh%p{RxGW~25r_6A8ozR2JZQB+xe06g&L|K-?;M{Y=Y86~MDd|-LKgv^z(y|z z?uvO3sWLEaOQ6)d`1J@;5n?kohHNLuF%Aem#O-mHk`rF7?F~mzdZ&nAwBV#XbaR3f zQsqT(j`)`{$QS5|Aod1q@T4L@9^7Kl+~&pURXG^~f-TH*{5Gx#n4*nezuD9e+(2UDyD+I=SP)K>Zc1hLX^2rxoyYlt2zuQ{oL#@Ec;Mbfhnx$PpSFixo6_Uc2 zZD*Fvg7w97+`QRpnF@N~xxHiH#ZXOoEM&$-_tQ`Ot_UESq)-kCu>O9W1dh6omEeyh z8I#W%sRZydD||}C)NnL1TFsM{Nbw-sk>6Ach606*=vn1*4a9mWn~`c_hSM3ysubfo zXPtwE)iSjSGEu8$3OFSNo+_D@FkwrD1vFzRYJABvRYRp19Z88=nnWXMX0WRebXMm8 z*IO*&e5TBr8t4qE-5J8+hO>A4Ri=g0bFx6SugN5N0U_tUVv}$okN{DWZCMBiYQ{1q z&Z0?T8h2`1%v9W2yy(v&=wvN-G;Co&2KQ2X;K0xgC&^^Z)U22^d*}+KlByhOvBTOJNv? z?W#?-w%o}5u1_mZgEEt7rqcB*+{&GD=})J$XuzI=b9lUR(g~@e&ym$=xA_hN6^649IYI+WE0=kCH#q8 ztx;uXfyC34nU}%5d3AL&H&=cQ-HKQvkqm*HRXX1ry8xP9N77cae?}NeU_*wDfo;UQ zS?))SP`B=}kQXV|I-kssUJ^|j%lqn#mPqipn>mueycb1cs&V8y)__}oPmnY8`Y z)cDQb?)nuDiZ5q`{G^sJBvX+NsZt-Xu%u@cju90}y2hk_>0PDJ%=_tDnqEc;xSG~7 zTNzoim9T|c*ve4DG_iZAWHzxm)H4fF)>p2NrvUCmQnmw^O($J}CPQw>F=A4Dn(AXj za~*ftNkMT2f64@%;nlc8rfH>BGYO+CVj3S0&Og$%#ILx;`Bj-()n-8nfyJS8J_Q$Uk$9JJE~)P~0$iNh;Zt`;IHNXUquNu2 zkebH~HG)r!hE$^*u8s&?DuG~jc1R_{@h;_x!<`iI_g=xf-xd4*Ut(FPgo*6_i^9{t z|GK$R*-EbezIe5@{Qmc&T+_e*_rwr8NwXId@e6zztBJY76XS{8>MCb5$O?o>BcJkb za5J&rb(M^4$4~8eeG<+s*^E&?I1vOXi3xJ3|Ap&D~kC?Qr+QcP-$_<^Q*~X zr8&88z$N!aCf|(hjXAzI)`a1Wcf4^z4pF0hZ!fmIzV%Z5e}*4l*lw`t{r~gLjnwyl zpTF2x_WzG^$<0esJ4fE-PtJZ~C?Xl|1h+n=Q>UV^Y#fGtLo}Sp@LZSl7FWIpV;YMi z24d@hX^JF(f;arjS8o%Ea)nD_11-Mbi+2q?mJvg7y2u8uPYW3JU=66-gQ({h7)$7( ziegTz8^Q<)v0wwnK9);g&*Ga@`$rlW8h6}fVL@;Uven)jGd;$PVJLNg2m9w)Q@w9O! zD_DrtkOL>HICY`1Ap$+Uepe}3;An87oZ^&J9iXo)q)BG4iz+qJKYgEOBI`T&0Gbr+ z#B$a%%}7~Evb0l3KPzMkc}gKk(a)o?n&dkiuBHtQc1XFk()#mF{`8O5%CFB_Z(1eN z3jVy?K3gxe?%tGp5i;P62Z1I|u4UlOgF0?zhK$M#GwygvB^}BZN->7>iEUYf2nDR2 zW5n7-(Ym0)HKpzW0?2(M=m^;OLJT(Y5wAs2u*G*_7jzcYB`XVUnxqR3U=^JOr+{0Q zctRXICY5yE1~wD95tcOdJ96E}J#_ggNZh9>g;8AUb=4{wS1bW8b!Ztyevd0Q|MTyE zm)Zkry9@pWpy}~n<;CX9)bIanZEY>%zsI=d`2B~){gMOs+Ro6oyE;9QqWuz$P{HJ= z9w&S`WX3PheBBSw@B(Ouj7Q6ZOUnM`9qit77hT2-``>z5N&WuIOZ-i+rTstrg+^nd zrJCEsY!5pn{33vfhhWVsu@HBAoUc+^GG)N8)VWr0$T=LaWZbzKyo+F4t(%2th zN9TRmTxH1nRaOs`03w&jIK^URWDa zD3B=+=0N&?D%MM@5*5&)S9_WCgg4_To7SfFvmymD;PipIr1OBQOv?UGYSq1inlJ$;M2NeC|Ej@emWS-&&v;pa{0pu;T3E5m61 z%3(1_P#(e%hWZw}>J=h90a$7~mgo0k@C7U^wB_4bC3b*LC+>OTC2@dKXP8~k;qd{H zE_h-Qh;%iH{Pp#<1pr?d_khaKqcV(V&q!Ttu;DJ+FwW1<4Qy|@?IuzU%s}w!aUJi^ zCLFgjcGdAw+~>>H$PUPP;GN5sr}6#)cL4jg076RVmO-ta#TofxU)l1&)`Z{xQrzVV zuhogmDDcFs$Yrse3%~6UZpD)2mk=fwKlLO-ND)B7i;5ln*ANrFRx$|d9-i(@3Zbd? zDcMZ?GO;*q$d40>LtdU6IPRFLb7%aNTE~Mh8jXb_QOjs}W4}$eld|{$PE(>FzPH<2 zUJJUETd;)Nv%qyPyo?#~|K^L0RQ&&ZIsSi~Yhb&*F(|+`KQZw63o{J)unqQJ;;H;$ zV^iEJ{Pr{dyJZ-jgd5<#PW~jnC14nByWOXltM+R`^t;X7ONp#}I6A16v3tVu0;em7 l2^@e9ZD+7ex;CC?_}&6qUdwBFEw8`n_5WqiktzU&006xS0yO{t diff --git a/node_modules/bin-links/node_modules/cmd-shim/index.js b/node_modules/bin-links/node_modules/cmd-shim/index.js deleted file mode 100644 index 722ad9158b02..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/index.js +++ /dev/null @@ -1,247 +0,0 @@ -// On windows, create a .cmd file. -// Read the #! in the file to see what it uses. The vast majority -// of the time, this will be either: -// "#!/usr/bin/env " -// or: -// "#! " -// -// Write a binroot/pkg.bin + ".cmd" file that has this line in it: -// @ %~dp0 %* - -module.exports = cmdShim -cmdShim.ifExists = cmdShimIfExists - -var fs = require("graceful-fs") - -var mkdir = require("mkdirp") - , path = require("path") - , toBatchSyntax = require("./lib/to-batch-syntax") - , shebangExpr = /^#\!\s*(?:\/usr\/bin\/env)?\s*([^ \t]+=[^ \t]+\s+)*\s*([^ \t]+)(.*)$/ - -function cmdShimIfExists (from, to, cb) { - fs.stat(from, function (er) { - if (er) return cb() - cmdShim(from, to, cb) - }) -} - -// Try to unlink, but ignore errors. -// Any problems will surface later. -function rm (path, cb) { - fs.unlink(path, function(er) { - cb() - }) -} - -function cmdShim (from, to, cb) { - fs.stat(from, function (er, stat) { - if (er) - return cb(er) - - cmdShim_(from, to, cb) - }) -} - -function cmdShim_ (from, to, cb) { - var then = times(2, next, cb) - rm(to, then) - rm(to + ".cmd", then) - - function next(er) { - writeShim(from, to, cb) - } -} - -function writeShim (from, to, cb) { - // make a cmd file and a sh script - // First, check if the bin is a #! of some sort. - // If not, then assume it's something that'll be compiled, or some other - // sort of script, and just call it directly. - mkdir(path.dirname(to), function (er) { - if (er) - return cb(er) - fs.readFile(from, "utf8", function (er, data) { - if (er) return writeShim_(from, to, null, null, cb) - var firstLine = data.trim().split(/\r*\n/)[0] - , shebang = firstLine.match(shebangExpr) - if (!shebang) return writeShim_(from, to, null, null, null, cb) - var vars = shebang[1] || "" - , prog = shebang[2] - , args = shebang[3] || "" - return writeShim_(from, to, prog, args, vars, cb) - }) - }) -} - - -function writeShim_ (from, to, prog, args, variables, cb) { - var shTarget = path.relative(path.dirname(to), from) - , target = shTarget.split("/").join("\\") - , longProg - , shProg = prog && prog.split("\\").join("/") - , shLongProg - , pwshProg = shProg && "\"" + shProg + "$exe\"" - , pwshLongProg - shTarget = shTarget.split("\\").join("/") - args = args || "" - variables = variables || "" - if (!prog) { - prog = "\"%~dp0\\" + target + "\"" - shProg = "\"$basedir/" + shTarget + "\"" - pwshProg = shProg - args = "" - target = "" - shTarget = "" - } else { - longProg = "\"%~dp0\\" + prog + ".exe\"" - shLongProg = "\"$basedir/" + prog + "\"" - pwshLongProg = "\"$basedir/" + prog + "$exe\"" - target = "\"%~dp0\\" + target + "\"" - shTarget = "\"$basedir/" + shTarget + "\"" - } - - // @SETLOCAL - // - // @IF EXIST "%~dp0\node.exe" ( - // @SET "_prog=%~dp0\node.exe" - // ) ELSE ( - // @SET "_prog=node" - // @SET PATHEXT=%PATHEXT:;.JS;=;% - // ) - // - // "%_prog%" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* - // @ENDLOCAL - var cmd - if (longProg) { - shLongProg = shLongProg.trim(); - args = args.trim(); - var variableDeclarationsAsBatch = toBatchSyntax.convertToSetCommands(variables) - cmd = "@SETLOCAL\r\n" - + variableDeclarationsAsBatch - + "\r\n" - + "@IF EXIST " + longProg + " (\r\n" - + " @SET \"_prog=" + longProg.replace(/(^")|("$)/g, '') + "\"\r\n" - + ") ELSE (\r\n" - + " @SET \"_prog=" + prog.replace(/(^")|("$)/g, '') + "\"\r\n" - + " @SET PATHEXT=%PATHEXT:;.JS;=;%\r\n" - + ")\r\n" - + "\r\n" - + "\"%_prog%\" " + args + " " + target + " %*\r\n" - + '@ENDLOCAL\r\n' - } else { - cmd = "@" + prog + " " + args + " " + target + " %*\r\n" - } - - // #!/bin/sh - // basedir=`dirname "$0"` - // - // case `uname` in - // *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; - // esac - // - // if [ -x "$basedir/node.exe" ]; then - // "$basedir/node.exe" "$basedir/node_modules/npm/bin/npm-cli.js" "$@" - // ret=$? - // else - // node "$basedir/node_modules/npm/bin/npm-cli.js" "$@" - // ret=$? - // fi - // exit $ret - - var sh = "#!/bin/sh\n" - - sh = sh - + "basedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")\n" - + "\n" - + "case `uname` in\n" - + " *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;\n" - + "esac\n" - + "\n" - - if (shLongProg) { - sh = sh - + "if [ -x "+shLongProg+" ]; then\n" - + " " + variables + shLongProg + " " + args + " " + shTarget + " \"$@\"\n" - + " ret=$?\n" - + "else \n" - + " " + variables + shProg + " " + args + " " + shTarget + " \"$@\"\n" - + " ret=$?\n" - + "fi\n" - + "exit $ret\n" - } else { - sh = sh - + shProg + " " + args + " " + shTarget + " \"$@\"\n" - + "exit $?\n" - } - - // #!/usr/bin/env pwsh - // $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - // - // $ret=0 - // $exe = "" - // if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - // # Fix case when both the Windows and Linux builds of Node - // # are installed in the same directory - // $exe = ".exe" - // } - // if (Test-Path "$basedir/node") { - // & "$basedir/node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args - // $ret=$LASTEXITCODE - // } else { - // & "node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args - // $ret=$LASTEXITCODE - // } - // exit $ret - var pwsh = "#!/usr/bin/env pwsh\n" - + "$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent\n" - + "\n" - + "$exe=\"\"\n" - + "if ($PSVersionTable.PSVersion -lt \"6.0\" -or $IsWindows) {\n" - + " # Fix case when both the Windows and Linux builds of Node\n" - + " # are installed in the same directory\n" - + " $exe=\".exe\"\n" - + "}\n" - if (shLongProg) { - pwsh = pwsh - + "$ret=0\n" - + "if (Test-Path " + pwshLongProg + ") {\n" - + " & " + pwshLongProg + " " + args + " " + shTarget + " $args\n" - + " $ret=$LASTEXITCODE\n" - + "} else {\n" - + " & " + pwshProg + " " + args + " " + shTarget + " $args\n" - + " $ret=$LASTEXITCODE\n" - + "}\n" - + "exit $ret\n" - } else { - pwsh = pwsh - + "& " + pwshProg + " " + args + " " + shTarget + " $args\n" - + "exit $LASTEXITCODE\n" - } - - var then = times(3, next, cb) - fs.writeFile(to + ".ps1", pwsh, "utf8", then) - fs.writeFile(to + ".cmd", cmd, "utf8", then) - fs.writeFile(to, sh, "utf8", then) - function next () { - chmodShim(to, cb) - } -} - -function chmodShim (to, cb) { - var then = times(2, cb, cb) - fs.chmod(to, "0755", then) - fs.chmod(to + ".cmd", "0755", then) - fs.chmod(to + ".ps1", "0755", then) -} - -function times(n, ok, cb) { - var errState = null - return function(er) { - if (!errState) { - if (er) - cb(errState = er) - else if (--n === 0) - ok() - } - } -} diff --git a/node_modules/bin-links/node_modules/cmd-shim/lib/to-batch-syntax.js b/node_modules/bin-links/node_modules/cmd-shim/lib/to-batch-syntax.js deleted file mode 100644 index d8bed1a634a0..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/lib/to-batch-syntax.js +++ /dev/null @@ -1,52 +0,0 @@ -exports.replaceDollarWithPercentPair = replaceDollarWithPercentPair -exports.convertToSetCommand = convertToSetCommand -exports.convertToSetCommands = convertToSetCommands - -function convertToSetCommand(key, value) { - var line = "" - key = key || "" - key = key.trim() - value = value || "" - value = value.trim() - if(key && value && value.length > 0) { - line = "@SET " + key + "=" + replaceDollarWithPercentPair(value) + "\r\n" - } - return line -} - -function extractVariableValuePairs(declarations) { - var pairs = {} - declarations.map(function(declaration) { - var split = declaration.split("=") - pairs[split[0]]=split[1] - }) - return pairs -} - -function convertToSetCommands(variableString) { - var variableValuePairs = extractVariableValuePairs(variableString.split(" ")) - var variableDeclarationsAsBatch = "" - Object.keys(variableValuePairs).forEach(function (key) { - variableDeclarationsAsBatch += convertToSetCommand(key, variableValuePairs[key]) - }) - return variableDeclarationsAsBatch -} - -function replaceDollarWithPercentPair(value) { - var dollarExpressions = /\$\{?([^\$@#\?\- \t{}:]+)\}?/g - var result = "" - var startIndex = 0 - value = value || "" - do { - var match = dollarExpressions.exec(value) - if(match) { - var betweenMatches = value.substring(startIndex, match.index) || "" - result += betweenMatches + "%" + match[1] + "%" - startIndex = dollarExpressions.lastIndex - } - } while (dollarExpressions.lastIndex > 0) - result += value.substr(startIndex) - return result -} - - diff --git a/node_modules/bin-links/node_modules/cmd-shim/package.json b/node_modules/bin-links/node_modules/cmd-shim/package.json deleted file mode 100644 index 02ff407be2fb..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/package.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "_from": "cmd-shim@^2.0.2", - "_id": "cmd-shim@2.1.0", - "_inBundle": false, - "_integrity": "sha512-A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw==", - "_location": "/bin-links/cmd-shim", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "cmd-shim@^2.0.2", - "name": "cmd-shim", - "escapedName": "cmd-shim", - "rawSpec": "^2.0.2", - "saveSpec": null, - "fetchSpec": "^2.0.2" - }, - "_requiredBy": [ - "/bin-links" - ], - "_resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.1.0.tgz", - "_shasum": "e59a08d4248dda3bb502044083a4db4ac890579a", - "_spec": "cmd-shim@^2.0.2", - "_where": "/Users/isaacs/dev/npm/cli/node_modules/bin-links", - "bugs": { - "url": "https://github.com/npm/cmd-shim/issues" - }, - "bundleDependencies": false, - "dependencies": { - "graceful-fs": "^4.1.2", - "mkdirp": "~0.5.0" - }, - "deprecated": false, - "description": "Used in npm for command line application support", - "devDependencies": { - "rimraf": "~2.2.8", - "tap": "^1.2.0" - }, - "homepage": "https://github.com/npm/cmd-shim#readme", - "license": "ISC", - "name": "cmd-shim", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/cmd-shim.git" - }, - "scripts": { - "test": "tap test/*.js" - }, - "version": "2.1.0" -} diff --git a/node_modules/bin-links/node_modules/cmd-shim/test/00-setup.js b/node_modules/bin-links/node_modules/cmd-shim/test/00-setup.js deleted file mode 100644 index c9a7d3920748..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/test/00-setup.js +++ /dev/null @@ -1,35 +0,0 @@ -var test = require('tap').test -var mkdirp = require('mkdirp') -var fs = require('fs') -var path = require('path') -var fixtures = path.resolve(__dirname, 'fixtures') - -var froms = { - 'from.exe': 'exe', - 'from.env': '#!/usr/bin/env node\nconsole.log(/hi/)\n', - 'from.env.args': '#!/usr/bin/env node --expose_gc\ngc()\n', - 'from.env.variables': '#!/usr/bin/env NODE_PATH=./lib:$NODE_PATH node', - 'from.sh': '#!/usr/bin/sh\necho hi\n', - 'from.sh.args': '#!/usr/bin/sh -x\necho hi\n' -} - -var cmdShim = require('../') - -test('create fixture', function (t) { - mkdirp(fixtures, function (er) { - if (er) - throw er - t.pass('made dir') - Object.keys(froms).forEach(function (f) { - t.test('write ' + f, function (t) { - fs.writeFile(path.resolve(fixtures, f), froms[f], function (er) { - if (er) - throw er - t.pass('wrote ' + f) - t.end() - }) - }) - }) - t.end() - }) -}) diff --git a/node_modules/bin-links/node_modules/cmd-shim/test/basic.js b/node_modules/bin-links/node_modules/cmd-shim/test/basic.js deleted file mode 100755 index 4d92557f4e0f..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/test/basic.js +++ /dev/null @@ -1,330 +0,0 @@ -var test = require('tap').test -var mkdirp = require('mkdirp') -var fs = require('fs') -var path = require('path') -var fixtures = path.resolve(__dirname, 'fixtures') - -var cmdShim = require('../') - -test('no shebang', function (t) { - var from = path.resolve(fixtures, 'from.exe') - var to = path.resolve(fixtures, 'exe.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh"+ - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")"+ - "\n"+ - "\ncase `uname` in"+ - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;"+ - "\nesac"+ - "\n"+ - "\n\"$basedir/from.exe\" \"$@\"\nexit $?\n") - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@\"%~dp0\\from.exe\" %*\r\n") - t.equal(fs.readFileSync(to + '.ps1', 'utf8'), - '#!/usr/bin/env pwsh'+ - '\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent'+ - '\n'+ - '\n$exe=""'+ - '\nif ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {'+ - '\n # Fix case when both the Windows and Linux builds of Node'+ - '\n # are installed in the same directory'+ - '\n $exe=".exe"'+ - '\n}'+ - '\n& "$basedir/from.exe" $args'+ - '\nexit $LASTEXITCODE'+ - '\n') - t.end() - }) -}) - -test('env shebang', function (t) { - var from = path.resolve(fixtures, 'from.env') - var to = path.resolve(fixtures, 'env.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh" + - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")" + - "\n" + - "\ncase `uname` in" + - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;" + - "\nesac" + - "\n" + - "\nif [ -x \"$basedir/node\" ]; then" + - "\n \"$basedir/node\" \"$basedir/from.env\" \"$@\"" + - "\n ret=$?" + - "\nelse " + - "\n node \"$basedir/from.env\" \"$@\"" + - "\n ret=$?" + - "\nfi" + - "\nexit $ret" + - "\n") - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@SETLOCAL\r" + - "\n\r" + - "\n@IF EXIST \"%~dp0\\node.exe\" (\r" + - "\n @SET \"_prog=%~dp0\\node.exe\"\r" + - "\n) ELSE (\r" + - "\n @SET \"_prog=node\"\r" + - "\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r" + - "\n)\r" + - "\n\r" + - "\n\"%_prog%\" \"%~dp0\\from.env\" %*\r" + - "\n@ENDLOCAL\r" + - "\n") - t.end() - }) -}) - -test('env shebang with args', function (t) { - var from = path.resolve(fixtures, 'from.env.args') - var to = path.resolve(fixtures, 'env.args.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh"+ - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")"+ - "\n"+ - "\ncase `uname` in"+ - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;"+ - "\nesac"+ - "\n"+ - "\nif [ -x \"$basedir/node\" ]; then"+ - "\n \"$basedir/node\" --expose_gc \"$basedir/from.env.args\" \"$@\""+ - "\n ret=$?"+ - "\nelse "+ - "\n node --expose_gc \"$basedir/from.env.args\" \"$@\""+ - "\n ret=$?"+ - "\nfi"+ - "\nexit $ret"+ - "\n") - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@SETLOCAL\r" + - "\n\r" + - "\n@IF EXIST \"%~dp0\\node.exe\" (\r" + - "\n @SET \"_prog=%~dp0\\node.exe\"\r" + - "\n) ELSE (\r" + - "\n @SET \"_prog=node\"\r" + - "\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r" + - "\n)\r" + - "\n\r" + - "\n\"%_prog%\" --expose_gc \"%~dp0\\from.env.args\" %*\r" + - "\n@ENDLOCAL\r" + - "\n") - t.equal(fs.readFileSync(to + '.ps1', 'utf8'), - '#!/usr/bin/env pwsh'+ - '\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent'+ - '\n'+ - '\n$exe=""'+ - '\nif ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {'+ - '\n # Fix case when both the Windows and Linux builds of Node'+ - '\n # are installed in the same directory'+ - '\n $exe=".exe"'+ - '\n}'+ - '\n$ret=0'+ - '\nif (Test-Path "$basedir/node$exe") {'+ - '\n & "$basedir/node$exe" --expose_gc "$basedir/from.env.args" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n} else {'+ - '\n & "node$exe" --expose_gc "$basedir/from.env.args" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n}'+ - '\nexit $ret'+ - '\n') - t.end() - }) -}) - -test('env shebang with variables', function (t) { - var from = path.resolve(fixtures, 'from.env.variables') - var to = path.resolve(fixtures, 'env.variables.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh"+ - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")" + - "\n"+ - "\ncase `uname` in"+ - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;"+ - "\nesac"+ - "\n"+ - "\nif [ -x \"$basedir/node\" ]; then"+ - "\n NODE_PATH=./lib:$NODE_PATH \"$basedir/node\" \"$basedir/from.env.variables\" \"$@\""+ - "\n ret=$?"+ - "\nelse "+ - "\n NODE_PATH=./lib:$NODE_PATH node \"$basedir/from.env.variables\" \"$@\""+ - "\n ret=$?"+ - "\nfi"+ - "\nexit $ret"+ - "\n") - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@SETLOCAL\r"+ - "\n@SET NODE_PATH=./lib:%NODE_PATH%\r"+ - "\n\r" + - "\n@IF EXIST \"%~dp0\\node.exe\" (\r"+ - "\n @SET \"_prog=%~dp0\\node.exe\"\r" + - "\n) ELSE (\r"+ - "\n @SET \"_prog=node\"\r"+ - "\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r" + - "\n)\r"+ - "\n\r"+ - "\n\"%_prog%\" \"%~dp0\\from.env.variables\" %*\r"+ - "\n@ENDLOCAL\r\n") - t.equal(fs.readFileSync(to + '.ps1', 'utf8'), - '#!/usr/bin/env pwsh'+ - '\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent'+ - '\n'+ - '\n$exe=""'+ - '\nif ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {'+ - '\n # Fix case when both the Windows and Linux builds of Node'+ - '\n # are installed in the same directory'+ - '\n $exe=".exe"'+ - '\n}'+ - '\n$ret=0'+ - '\nif (Test-Path "$basedir/node$exe") {'+ - '\n & "$basedir/node$exe" "$basedir/from.env.variables" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n} else {'+ - '\n & "node$exe" "$basedir/from.env.variables" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n}'+ - '\nexit $ret'+ - '\n') - t.end() - }) -}) - -test('explicit shebang', function (t) { - var from = path.resolve(fixtures, 'from.sh') - var to = path.resolve(fixtures, 'sh.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh" + - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")" + - "\n" + - "\ncase `uname` in" + - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;" + - "\nesac" + - "\n" + - "\nif [ -x \"$basedir//usr/bin/sh\" ]; then" + - "\n \"$basedir//usr/bin/sh\" \"$basedir/from.sh\" \"$@\"" + - "\n ret=$?" + - "\nelse " + - "\n /usr/bin/sh \"$basedir/from.sh\" \"$@\"" + - "\n ret=$?" + - "\nfi" + - "\nexit $ret" + - "\n") - - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@SETLOCAL\r" + - "\n\r" + - "\n@IF EXIST \"%~dp0\\/usr/bin/sh.exe\" (\r" + - "\n @SET \"_prog=%~dp0\\/usr/bin/sh.exe\"\r" + - "\n) ELSE (\r" + - "\n @SET \"_prog=/usr/bin/sh\"\r" + - "\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r" + - "\n)\r" + - "\n\r" + - "\n\"%_prog%\" \"%~dp0\\from.sh\" %*\r" + - "\n@ENDLOCAL\r" + - "\n") - - t.equal(fs.readFileSync(to + '.ps1', 'utf8'), - '#!/usr/bin/env pwsh'+ - '\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent'+ - '\n'+ - '\n$exe=""'+ - '\nif ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {'+ - '\n # Fix case when both the Windows and Linux builds of Node'+ - '\n # are installed in the same directory'+ - '\n $exe=".exe"'+ - '\n}'+ - '\n$ret=0'+ - '\nif (Test-Path "$basedir//usr/bin/sh$exe") {'+ - '\n & "$basedir//usr/bin/sh$exe" "$basedir/from.sh" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n} else {'+ - '\n & "/usr/bin/sh$exe" "$basedir/from.sh" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n}'+ - '\nexit $ret'+ - '\n') - t.end() - }) -}) - -test('explicit shebang with args', function (t) { - var from = path.resolve(fixtures, 'from.sh.args') - var to = path.resolve(fixtures, 'sh.args.shim') - cmdShim(from, to, function(er) { - if (er) - throw er - - t.equal(fs.readFileSync(to, 'utf8'), - "#!/bin/sh" + - "\nbasedir=$(dirname \"$(echo \"$0\" | sed -e 's,\\\\,/,g')\")" + - "\n" + - "\ncase `uname` in" + - "\n *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w \"$basedir\"`;;" + - "\nesac" + - "\n" + - "\nif [ -x \"$basedir//usr/bin/sh\" ]; then" + - "\n \"$basedir//usr/bin/sh\" -x \"$basedir/from.sh.args\" \"$@\"" + - "\n ret=$?" + - "\nelse " + - "\n /usr/bin/sh -x \"$basedir/from.sh.args\" \"$@\"" + - "\n ret=$?" + - "\nfi" + - "\nexit $ret" + - "\n") - - t.equal(fs.readFileSync(to + '.cmd', 'utf8'), - "@SETLOCAL\r" + - "\n\r" + - "\n@IF EXIST \"%~dp0\\/usr/bin/sh.exe\" (\r" + - "\n @SET \"_prog=%~dp0\\/usr/bin/sh.exe\"\r" + - "\n) ELSE (\r" + - "\n @SET \"_prog=/usr/bin/sh\"\r" + - "\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r" + - "\n)\r" + - "\n\r" + - "\n\"%_prog%\" -x \"%~dp0\\from.sh.args\" %*\r" + - "\n@ENDLOCAL\r" + - "\n") - - t.equal(fs.readFileSync(to + '.ps1', 'utf8'), - '#!/usr/bin/env pwsh'+ - '\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent'+ - '\n'+ - '\n$exe=""'+ - '\nif ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {'+ - '\n # Fix case when both the Windows and Linux builds of Node'+ - '\n # are installed in the same directory'+ - '\n $exe=".exe"'+ - '\n}'+ - '\n$ret=0'+ - '\nif (Test-Path "$basedir//usr/bin/sh$exe") {'+ - '\n & "$basedir//usr/bin/sh$exe" -x "$basedir/from.sh.args" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n} else {'+ - '\n & "/usr/bin/sh$exe" -x "$basedir/from.sh.args" $args'+ - '\n $ret=$LASTEXITCODE'+ - '\n}'+ - '\nexit $ret'+ - '\n') - t.end() - }) -}) diff --git a/node_modules/bin-links/node_modules/cmd-shim/test/to-batch-syntax-tests.js b/node_modules/bin-links/node_modules/cmd-shim/test/to-batch-syntax-tests.js deleted file mode 100644 index 3645fd0a577a..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/test/to-batch-syntax-tests.js +++ /dev/null @@ -1,25 +0,0 @@ -var test = require('tap').test -var toBatchSyntax = require('../lib/to-batch-syntax') - -test('replace $ expressions with % pair', function (t) { - var assertReplacement = function(string, expected) { - t.equal(toBatchSyntax.replaceDollarWithPercentPair(string), expected) - } - assertReplacement("$A", "%A%") - assertReplacement("$A:$B", "%A%:%B%") - assertReplacement("$A bla", "%A% bla") - assertReplacement("${A}bla", "%A%bla") - assertReplacement("$A $bla bla", "%A% %bla% bla") - assertReplacement("${A}bla ${bla}bla", "%A%bla %bla%bla") - assertReplacement("./lib:$NODE_PATH", "./lib:%NODE_PATH%") - t.end() -}) - -test('convert variable declaration to set command', function(t) { - t.equal(toBatchSyntax.convertToSetCommand("A",".lib:$A "), "@SET A=.lib:%A%\r\n") - t.equal(toBatchSyntax.convertToSetCommand("", ""), "") - t.equal(toBatchSyntax.convertToSetCommand(" ", ""), "") - t.equal(toBatchSyntax.convertToSetCommand(" ", " "), "") - t.equal(toBatchSyntax.convertToSetCommand(" ou", " ou "), "@SET ou=ou\r\n") - t.end() -}) diff --git a/node_modules/bin-links/node_modules/cmd-shim/test/zz-cleanup.js b/node_modules/bin-links/node_modules/cmd-shim/test/zz-cleanup.js deleted file mode 100644 index 9425031001cb..000000000000 --- a/node_modules/bin-links/node_modules/cmd-shim/test/zz-cleanup.js +++ /dev/null @@ -1,13 +0,0 @@ -var test = require('tap').test -var path = require('path') -var fixtures = path.resolve(__dirname, 'fixtures') -var rimraf = require('rimraf') - -test('cleanup', function(t) { - rimraf(fixtures, function(er) { - if (er) - throw er - t.pass('cleaned up') - t.end() - }) -}) diff --git a/node_modules/bin-links/package.json b/node_modules/bin-links/package.json index 0a1af20fdaec..e14be1e6926d 100644 --- a/node_modules/bin-links/package.json +++ b/node_modules/bin-links/package.json @@ -1,54 +1,53 @@ { - "_args": [ - [ - "bin-links@1.1.2", - "/Users/rebecca/code/npm" - ] - ], - "_from": "bin-links@1.1.2", - "_id": "bin-links@1.1.2", + "_from": "bin-links@1.1.3", + "_id": "bin-links@1.1.3", "_inBundle": false, - "_integrity": "sha512-8eEHVgYP03nILphilltWjeIjMbKyJo3wvp9K816pHbhP301ismzw15mxAAEVQ/USUwcP++1uNrbERbp8lOA6Fg==", + "_integrity": "sha512-TEwmH4PHU/D009stP+fkkazMJgkBNCv60z01lQ/Mn8E6+ThHoD03svMnBVuCowwXo2nP2qKyKZxKxp58OHRzxw==", "_location": "/bin-links", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, - "raw": "bin-links@1.1.2", + "raw": "bin-links@1.1.3", "name": "bin-links", "escapedName": "bin-links", - "rawSpec": "1.1.2", + "rawSpec": "1.1.3", "saveSpec": null, - "fetchSpec": "1.1.2" + "fetchSpec": "1.1.3" }, "_requiredBy": [ + "#USER", "/", - "/libcipm" + "/libcipm", + "/libnpm" ], - "_resolved": "https://registry.npmjs.org/bin-links/-/bin-links-1.1.2.tgz", - "_spec": "1.1.2", - "_where": "/Users/rebecca/code/npm", + "_resolved": "https://registry.npmjs.org/bin-links/-/bin-links-1.1.3.tgz", + "_shasum": "702fd59552703727313bc624bdbc4c0d3431c2ca", + "_spec": "bin-links@1.1.3", + "_where": "/Users/isaacs/dev/npm/cli", "author": { "name": "Mike Sherov" }, "bugs": { "url": "https://github.com/npm/bin-links/issues" }, + "bundleDependencies": false, "dependencies": { - "bluebird": "^3.5.0", - "cmd-shim": "^2.0.2", - "gentle-fs": "^2.0.0", - "graceful-fs": "^4.1.11", + "bluebird": "^3.5.3", + "cmd-shim": "^3.0.0", + "gentle-fs": "^2.0.1", + "graceful-fs": "^4.1.15", "write-file-atomic": "^2.3.0" }, + "deprecated": false, "description": "JavaScript package binary linker", "devDependencies": { "mkdirp": "^0.5.1", - "nyc": "^11.1.0", - "rimraf": "^2.6.2", + "nyc": "^13.1.0", + "rimraf": "^2.6.3", "standard": "^10.0.3", - "standard-version": "^4.2.0", - "tap": "^10.7.2", + "standard-version": "^4.4.0", + "tap": "^12.1.3", "weallbehave": "^1.2.0", "weallcontribute": "^1.0.8" }, @@ -77,5 +76,5 @@ "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" }, - "version": "1.1.2" + "version": "1.1.3" } diff --git a/package-lock.json b/package-lock.json index 9e2429eb65d4..aa9606eb1a7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -463,26 +463,15 @@ } }, "bin-links": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-1.1.2.tgz", - "integrity": "sha512-8eEHVgYP03nILphilltWjeIjMbKyJo3wvp9K816pHbhP301ismzw15mxAAEVQ/USUwcP++1uNrbERbp8lOA6Fg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-1.1.3.tgz", + "integrity": "sha512-TEwmH4PHU/D009stP+fkkazMJgkBNCv60z01lQ/Mn8E6+ThHoD03svMnBVuCowwXo2nP2qKyKZxKxp58OHRzxw==", "requires": { - "bluebird": "^3.5.0", - "cmd-shim": "^2.0.2", - "gentle-fs": "^2.0.0", - "graceful-fs": "^4.1.11", + "bluebird": "^3.5.3", + "cmd-shim": "^3.0.0", + "gentle-fs": "^2.0.1", + "graceful-fs": "^4.1.15", "write-file-atomic": "^2.3.0" - }, - "dependencies": { - "cmd-shim": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.1.0.tgz", - "integrity": "sha512-A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw==", - "requires": { - "graceful-fs": "^4.1.2", - "mkdirp": "~0.5.0" - } - } } }, "bind-obj-methods": { diff --git a/package.json b/package.json index 968f1775ce1d..c054ea09736d 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "ansistyles": "~0.1.3", "aproba": "^2.0.0", "archy": "~1.0.0", - "bin-links": "^1.1.2", + "bin-links": "^1.1.3", "bluebird": "^3.5.5", "byte-size": "^5.0.1", "cacache": "^12.0.2",