Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mlms13/reactriot2018-solarbadlands
Incomplete work on Git Changelog tool
https://github.com/mlms13/reactriot2018-solarbadlands
Last synced: 25 days ago
JSON representation
Incomplete work on Git Changelog tool
- Host: GitHub
- URL: https://github.com/mlms13/reactriot2018-solarbadlands
- Owner: mlms13
- Created: 2020-05-14T19:27:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T02:36:01.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T12:13:24.612Z (7 months ago)
- Language: Reason
- Size: 355 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Friendly Changelog
## Contributing
A simple `npm install` will get all of the dev dependecies you need to compile and run this project. Additionally, the following npm scripts should come in handy:
- `npm run build` to compile the ReasonML and bundle it
- `npm run clean` to clean up build artifacts if something goes wrong
- `npm run serve` to run the other two scripts, plus start a server on 8080 watching the `dist` folder for changes[OCaml and Reason IDE by Darin Morrison](https://marketplace.visualstudio.com/items?itemName=freebroccolo.reasonml) is a good plugin for working with the ReasonML in vscode. My build task (in `.vscode/tasks.json`) looks like this:
```
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}```