diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2019-04-24 22:49:32 +0200 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-04-30 16:22:56 +0200 |
commit | 72c6ea26830025c9b7cecb2b1dfd1002481d93ad (patch) | |
tree | 51d789d32ffaa3834862722521e1f02ad02a8eae /tools/license-builder.sh | |
parent | 98e9de7db930e505884ca8d0ca6588afbe43f127 (diff) | |
download | node-new-72c6ea26830025c9b7cecb2b1dfd1002481d93ad.tar.gz |
deps: add acorn stage-3 plugins
This adds bigint, class-fields, numeric-separators, static-class
features, private class methods and fields as dependency. That way
it's possible to use these in combination with acorn to parse these
language features.
This also removes a couple of files that were not necessary for
Node.js to reduce the code base.
PR-URL: https://github.com/nodejs/node/pull/27400
Refs: https://github.com/nodejs/node/issues/27391
Refs: https://github.com/nodejs/node/issues/25835
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'tools/license-builder.sh')
-rwxr-xr-x | tools/license-builder.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/license-builder.sh b/tools/license-builder.sh index b29e843522..d4c3920388 100755 --- a/tools/license-builder.sh +++ b/tools/license-builder.sh @@ -30,6 +30,7 @@ fi # Dependencies bundled in distributions addlicense "Acorn" "deps/acorn" "$(cat ${rootdir}/deps/acorn/acorn/LICENSE)" +addlicense "Acorn plugins" "deps/acorn-plugins" "$(cat ${rootdir}/deps/acorn-plugins/acorn-bigint/LICENSE)" addlicense "c-ares" "deps/cares" "$(tail -n +3 ${rootdir}/deps/cares/LICENSE.md)" addlicense "HTTP Parser" "deps/http_parser" "$(cat deps/http_parser/LICENSE-MIT)" if [ -f "${rootdir}/deps/icu/LICENSE" ]; then |