Skip to content

Commit e03644e

Browse files
committed
deps: vendor semver
1 parent 0324529 commit e03644e

Some content is hidden

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

67 files changed

+6573
-3
lines changed

LICENSE

+20-2
Original file line numberDiff line numberDiff line change
@@ -984,8 +984,7 @@ The externally maintained libraries used by Node.js are:
984984
- Strongtalk assembler, the basis of the files assembler-arm-inl.h,
985985
assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
986986
assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
987-
assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
988-
assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
987+
assembler-x64.cc, assembler-x64.h, assembler.cc and assembler.h.
989988
This code is copyrighted by Sun Microsystems Inc. and released
990989
under a 3-clause BSD license.
991990

@@ -1069,6 +1068,25 @@ The externally maintained libraries used by Node.js are:
10691068
jloup@gzip.org madler@alumni.caltech.edu
10701069
"""
10711070

1071+
- semver, located at deps/semver, is licensed as follows:
1072+
"""
1073+
The ISC License
1074+
1075+
Copyright (c) Isaac Z. Schlueter and Contributors
1076+
1077+
Permission to use, copy, modify, and/or distribute this software for any
1078+
purpose with or without fee is hereby granted, provided that the above
1079+
copyright notice and this permission notice appear in all copies.
1080+
1081+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1082+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1083+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1084+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1085+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1086+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1087+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1088+
"""
1089+
10721090
- npm, located at deps/npm, is licensed as follows:
10731091
"""
10741092
The npm application

configure.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959

6060
shareable_builtins = {'cjs_module_lexer/lexer': 'deps/cjs-module-lexer/lexer.js',
6161
'cjs_module_lexer/dist/lexer': 'deps/cjs-module-lexer/dist/lexer.js',
62-
'undici/undici': 'deps/undici/undici.js'
62+
'undici/undici': 'deps/undici/undici.js',
63+
'semver/semver': 'deps/semver/semver.js',
6364
}
6465

6566
# create option groups

deps/semver/LICENSE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 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)