mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
418dd68b61
Update the version of the bundled ICU (deps/icu-small) to ICU version 65.2. Fixes: https://github.com/nodejs/node/issues/30211 Fixes: https://github.com/nodejs/node/issues/29540 PR-URL: https://github.com/nodejs/node/pull/30232 Reviewed-By: Steven R Loomis <srloomis@us.ibm.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> |
||
---|---|---|
.. | ||
patches/64/source | ||
current_ver.dep | ||
icu_small.json | ||
icu_versions.json | ||
icu-generic.gyp | ||
icu-system.gyp | ||
iculslocs.cc | ||
icutrim.py | ||
no-op.cc | ||
README.md | ||
shrink-icu-src.py |
Notes about the tools/icu
subdirectory
This directory contains tools, data, and information about the International Components for Unicode integration. ICU is used both by V8 and also by Node.js itself to provide internationalization functionality.
patches/
are one-off patches, actually entire source file replacements, organized by ICU version number.icu_small.json
controls the "small" (English only) ICU. It is input toicutrim.py
icu-generic.gyp
is the build file used for most ICU builds within ICU.icu-system.gyp
is an alternate build file used when--with-intl=system-icu
is invoked. It builds against thepkg-config
located ICU.iculslocs.cc
is source for theiculslocs
utility, invoked byicutrim.py
as part of repackaging. Not used separately. See source for more details.no-op.cc
— empty function to convince gyp to use a C++ compiler.README.md
— you are hereshrink-icu-src.py
— this is used during upgrade (see guide below)
Note:
The files in this directory were written for the Node.js v0.12 effort. The original intent was to merge the tools such as
icutrim.py
andiculslocs.cc
back into ICU. ICU has gained its own “data slicer” tool. There is an issue open, https://github.com/nodejs/node/issues/25136 for replacingicutrim.py
with the ICU data slicer.
See Also
-
docs/guides/maintaining-icu.md for information on maintaining ICU in Node.js
-
docs/api/intl.md for information on the internationalization-related APIs in Node.js