Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 417 Bytes

CONTRIBUTING.md

File metadata and controls

5 lines (3 loc) · 417 Bytes

Contribution guidelines

Don't use inline require() calls

We use babel to generate a native ES Module build of pentf. The ES Module spec doesn't support synchronous inline loading of modules. Instead it provides an import() function, which returns a Promise object with the module content. Due to the incompatibility we cannot use inline require calls in our codebase.