Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Simplify Unicode build scripts and add Cased_Letter (#220)
* Rewrite/simplify Unicode build scripts -- @mathiasbynens This uses node-unicode-data instead of Python scripts, reducing the need to maintain the Unicode data parser as part of this repository. * Run eslint on tools/scripts and fix lint errors -- @josephfrazier * Provide only binary properties for UTS 18 Level 1 RL1.2 requirements for Unicode regex support -- @josephfrazier
- Loading branch information
Showing
with
2,189 additions
and 37,420 deletions.
- +2 −0 .eslintignore
- +5 −1 package.json
- +0 −309 tools/data/9.0.0-blocks.txt
- +0 −30,592 tools/data/9.0.0-database.txt
- +0 −1,579 tools/data/9.0.0-proplist.txt
- +0 −2,632 tools/data/9.0.0-scripts.txt
- +0 −45 tools/generate-unicode.sh
- +1,093 −1,093 tools/output/blocks.js
- +215 −209 tools/output/categories.js
- +40 −40 tools/output/properties.js
- +560 −560 tools/output/scripts.js
- +12 −0 tools/scripts/.eslintrc.js
- +17 −0 tools/scripts/block-regex.js
- +0 −27 tools/scripts/block-regex.py
- +39 −0 tools/scripts/category-regex.js
- +0 −69 tools/scripts/category-regex.py
- +26 −0 tools/scripts/property-regex.js
- +0 −45 tools/scripts/property-regex.py
- +17 −0 tools/scripts/script-regex.js
- +0 −27 tools/scripts/script-regex.py
- +163 −0 tools/scripts/utils.js
- +0 −192 tools/scripts/utils.py
@@ -1,2 +1,4 @@ | ||
xregexp-all.js | ||
lib | ||
tests/perf/versions | ||
tests/vendor |
Oops, something went wrong.