I am not the package maintainer but I'll leave this info here because it may be useful:
The other way to overcome UnicodeTable.txt download problems under corporate networks, weird proxies, etc is to download everyting manually and distribute "unicode" under "bundledDependencies" in package.json:
{
"bundledDependencies": [
"unicode"
]
}
Then just place unicode package with downloaded UnicodeTable.txt and generated category dir under your project's node_modules and keep it versioned (actually package.json file and category directory is enough for unicode to work).
I hope it helps someone. I think it can be also mentioned in a README.
I am not the package maintainer but I'll leave this info here because it may be useful:
The other way to overcome
UnicodeTable.txtdownload problems under corporate networks, weird proxies, etc is to download everyting manually and distribute "unicode" under "bundledDependencies" in package.json:{ "bundledDependencies": [ "unicode" ] }Then just place
unicodepackage with downloadedUnicodeTable.txtand generatedcategorydir under your project'snode_modulesand keep it versioned (actuallypackage.jsonfile andcategorydirectory is enough forunicodeto work).I hope it helps someone. I think it can be also mentioned in a README.