Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

18 lines (12 loc) · 1.14 KB

Contributing to Unicode

Thanks for your interest in contributing to unicode! We welcome new contributions regardless of your level of experience or familiarity with PureScript.

Every library in the Contributors organization shares a simple handbook that helps new contributors get started. With that in mind, please read the short contributing guide on purescript-contrib/governance before contributing to this library.

Generating Internal Modules

The Data.CodePoint.Unicode.Internal and Data.CodePoint.Unicode.Internal.Casing modules can be generated with the following command from the root of this repository:

$ ./download.sh
$ ./ubconfc < UnicodeData.txt > src/Data/CodePoint/Unicode/Internal.purs
$ ./fullcase.js
$ purs-tidy format-in-place src/Data/CodePoint/Unicode/Internal.purs src/Data/CodePoint/Unicode/Internal/Casing.purs

(Note that this downloads data according to the version stored in the unicode-version file in the root.)