- add command to generate an example
CHANGELOG.md
file - add command to the according npm scripts, so releasing is made easy
- typing: and/or maybe we want a
Result
returned from the parse function, which is either ok or not instead of the{version: -1}
as we have it now - initialize CHANGELOG.md on first run
- fix bug in tests2text, it throws
split called on undefined
- the bug was not using
# version X
but# vX
as headline, which is not really a bug show a warning and a hint when not finding the appropriate string- prevent a parsing error to throw
- to give the structure of the parsed text a meaning make it typed a bit better
- the bug was not using
- allow
# v
for a version headline too - document usage in README
- made it todo-stitcher
- move development to use docker (nix is just not used anywhere by anyone)
- rename the project to something more useful and shorter, easier to spell and remember, not even I can remember the name
- BUG: the nested items (see above) are not properly understood yet
- BUG: when
# version X
shows up like here, it makes the logic fail - version can also be a string (like "1.0-beta"), not just a number (see type
TodoItems.version
)
- move to node v11
- prevent need for esm by projects that require this one
- Allow passing the (CHANGELOG.md) file name to be parsed.
- describe what this project is for
- provide an executable
- make it releaseable
- move the actual code here