2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

nodejs: use --with-intl=small-icu

Fixes broken unicode property escapes used in some projects

```js
var UP = /[\p{Lu}]/u;
```

Compile time addition: ~1 minute (total is 10+ minutes)

Size addition:

```diff
-50MB	total
+60MB	total
```
This commit is contained in:
git-bruh 2023-02-16 13:57:37 +05:30
parent a11d9f11a7
commit 2486a9965c
No known key found for this signature in database

View File

@ -11,7 +11,7 @@ esac
./configure \
--shared-zlib \
--shared-openssl \
--with-intl=none \
--with-intl=small-icu \
--without-report \
--without-node-snapshot \
--without-node-code-cache \