Content-Length: 873948 | pFad | http://github.com/npm/cli/commit/20b09b67bedca8d2d49404d32d031bf1d875bf81

A2 deps: node-gyp@11.2.0 · npm/cli@20b09b6 · GitHub
Skip to content

Commit 20b09b6

Browse files
committed
deps: node-gyp@11.2.0
1 parent a96d8f6 commit 20b09b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+4167
-300
lines changed

DEPENDENCIES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ graph LR;
282282
cross-spawn-->which;
283283
debug-->ms;
284284
encoding-->iconv-lite;
285+
fdir-->picomatch;
285286
foreground-child-->cross-spawn;
286287
foreground-child-->signal-exit;
287288
fs-minipass-->minipass;
@@ -431,13 +432,13 @@ graph LR;
431432
minizlib-->rimraf;
432433
node-gyp-->env-paths;
433434
node-gyp-->exponential-backoff;
434-
node-gyp-->glob;
435435
node-gyp-->graceful-fs;
436436
node-gyp-->make-fetch-happen;
437437
node-gyp-->nopt;
438438
node-gyp-->proc-log;
439439
node-gyp-->semver;
440440
node-gyp-->tar;
441+
node-gyp-->tinyglobby;
441442
node-gyp-->which;
442443
nopt-->abbrev;
443444
normalize-package-data-->hosted-git-info;
@@ -751,6 +752,8 @@ graph LR;
751752
tar-->minizlib;
752753
tar-->mkdirp;
753754
tar-->yallist;
755+
tinyglobby-->fdir;
756+
tinyglobby-->picomatch;
754757
tuf-js-->debug;
755758
tuf-js-->make-fetch-happen;
756759
tuf-js-->tufjs-models["@tufjs/models"];

node_modules/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,11 @@
216216
!/tar/node_modules/minipass
217217
!/text-table
218218
!/tiny-relative-date
219+
!/tinyglobby
220+
!/tinyglobby/node_modules/
221+
/tinyglobby/node_modules/*
222+
!/tinyglobby/node_modules/fdir
223+
!/tinyglobby/node_modules/picomatch
219224
!/treeverse
220225
!/tuf-js
221226
!/unique-filename
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "11.1.0"
2+
".": "11.2.0"
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.19.1"
2+
".": "0.20.0"
33
}

node_modules/node-gyp/gyp/docs/Hacking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to make sure your changes aren't breaking anything important.
2424
You run the test driver with e.g.
2525

2626
``` sh
27-
$ python -m pip install --upgrade pip setuptools
27+
$ python -m pip install --upgrade pip
2828
$ pip install --editable ".[dev]"
2929
$ python -m pytest
3030
```

node_modules/node-gyp/gyp/docs/InputFormatReference.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ lists associated with the following keys, are treated as pathnames:
194194
* include\_dirs
195195
* inputs
196196
* libraries
197+
* library\_dirs
197198
* outputs
198199
* sources
199200
* mac\_bundle\_resources
@@ -231,7 +232,8 @@ Source dictionary from `../build/common.gypi`:
231232
```
232233
{
233234
'include_dirs': ['include'], # Treated as relative to ../build
234-
'libraries': ['-lz'], # Not treated as a pathname, begins with a dash
235+
'library_dirs': ['lib'], # Treated as relative to ../build
236+
'libraries': ['-lz'], # Not treated as a pathname, begins with a dash
235237
'defines': ['NDEBUG'], # defines does not contain pathnames
236238
}
237239
```
@@ -250,6 +252,7 @@ Merged dictionary:
250252
{
251253
'sources': ['string_util.cc'],
252254
'include_dirs': ['../build/include'],
255+
'library_dirs': ['../build/lib'],
253256
'libraries': ['-lz'],
254257
'defines': ['NDEBUG'],
255258
}

node_modules/node-gyp/gyp/gyp_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# found in the LICENSE file.
66

77
import os
8-
import sys
98
import subprocess
9+
import sys
1010

1111

1212
def IsCygwin():

node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"""Visual Studio project reader/writer."""
66

7-
import gyp.easy_xml as easy_xml
7+
from gyp import easy_xml
88

99
# ------------------------------------------------------------------------------
1010

node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"""Unit tests for the MSVSSettings.py file."""
88

99
import unittest
10-
import gyp.MSVSSettings as MSVSSettings
11-
1210
from io import StringIO
1311

12+
from gyp import MSVSSettings
13+
1414

1515
class TestSequenceFunctions(unittest.TestCase):
1616
def setUp(self):

node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"""Visual Studio project reader/writer."""
66

7-
import gyp.easy_xml as easy_xml
7+
from gyp import easy_xml
88

99

1010
class Writer:

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/npm/cli/commit/20b09b67bedca8d2d49404d32d031bf1d875bf81

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy