initial setup and Hello World exercise#3
initial setup and Hello World exercise#3TheRealOwenRees wants to merge 16 commits intoexercism:mainfrom
Conversation
BNAndras
left a comment
There was a problem hiding this comment.
Made some notes. The main thing is to not set the track to active until we're ready to launch and have received feedback from other maintainers on the track / online editor
|
|
||
| copy_example_or_examplar_to_solution | ||
| unskip_tests | ||
| #unskip_tests |
There was a problem hiding this comment.
Are we committing to having all tests run every time? I believe we can still test.skip every test after the first one.
There was a problem hiding this comment.
This can be ignored. It seems rescript-test doesn’t support a skipped test and it’s likely not worth the effort to use Jest directly.
|
|
||
| ln -s "${root_dir}/node_modules" "${tmp_dir}/node_modules" | ||
|
|
||
| copy_example_or_examplar_to_solution |
There was a problem hiding this comment.
| copy_example_or_examplar_to_solution | |
| copy_example_or_exemplar_to_solution |
|
|
||
| required_tool jq | ||
|
|
||
| copy_example_or_examplar_to_solution() { |
There was a problem hiding this comment.
| copy_example_or_exemplar_to_solution() { |
There was a problem hiding this comment.
This is an old set of instructions. We don't need to do it right this moment, but before launch, let's make sure to have configlet sync docs and metadata for everything.
…omplained that it exceeded the number of characters allowed
| "indent_style": "space", | ||
| "indent_size": 4 | ||
| "indent_size": 2, | ||
| "highlightjs_language": "reasonml" |
There was a problem hiding this comment.
How close is the ReasonML syntax for highlighting purposes? https://github.com/tsnobip/highlightjs-rescript might be a possibility. Exercism can load that NPM package or we can even spin up our own if we’re feeling particularly motivated.
Initial commit
boilerplate code and Rescript setup copied from the work of
tesjasbubanementioned on the forum postTesting setup in accordance to previous completed work, using Rescript-Test
Hello World exercise added
npm run ciis the command from previous work which will compile ReScript files into JS and then test those. No doubt this command will need renaming.