https://github.com/octod/rescript-module-template
A small and useful template for your Rescript libs
https://github.com/octod/rescript-module-template
library-template rescript rescript-libs
Last synced: about 2 months ago
JSON representation
A small and useful template for your Rescript libs
- Host: GitHub
- URL: https://github.com/octod/rescript-module-template
- Owner: OctoD
- License: mit
- Created: 2021-07-19T10:55:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-19T13:03:01.000Z (almost 4 years ago)
- Last Synced: 2025-02-13T00:28:31.632Z (4 months ago)
- Topics: library-template, rescript, rescript-libs
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Rescript module template
========================- It's Rescript! ❤️
- Builds fast
- Generates `.d.ts` files using gentype
- Builds both to commonjs and es6 spec## scripts
# Build
Builds files, generates typings and copy all necessaries files into the lib dir (ready to be published on a registry)
```
npm run build
```# Watch
If you are using the rescript lang plugin for vscode, it adds intellisense and other beautiful stuff in realtime inside your editor. Oh, builds files too (but not ready to be published on a registry)
```
npm run watch
```