Skip to content

Commit d6962a7

Browse files
committed
deps: add minimatch as a dependency
1 parent 57508fb commit d6962a7

Some content is hidden

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

68 files changed

+6837
-0
lines changed

.github/workflows/tools.yml

+8
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ jobs:
167167
cat temp-output
168168
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
169169
rm temp-output
170+
- id: minimatch
171+
subsystem: deps
172+
label: dependencies
173+
run: |
174+
./tools/dep_updaters/update-minimatch.sh > temp-output
175+
cat temp-output
176+
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
177+
rm temp-output
170178
- id: root-certificates
171179
subsystem: crypto
172180
label: crypto, notable-change

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -1360,6 +1360,25 @@ The externally maintained libraries used by Node.js are:
13601360
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13611361
"""
13621362

1363+
- minimatch, located at deps/minimatch, is licensed as follows:
1364+
"""
1365+
The ISC License
1366+
1367+
Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
1368+
1369+
Permission to use, copy, modify, and/or distribute this software for any
1370+
purpose with or without fee is hereby granted, provided that the above
1371+
copyright notice and this permission notice appear in all copies.
1372+
1373+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1374+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1375+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1376+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1377+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1378+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1379+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1380+
"""
1381+
13631382
- npm, located at deps/npm, is licensed as follows:
13641383
"""
13651384
The npm application

deps/minimatch/LICENSE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)