- Updated dependencies and development dependencies.
For hoast v1.1.5
.
- Instead of only being able to only convert utf-8 content, the file's entire data is made available using the first parameter of the engine function.
- Rewrote existing test into multiple more specific tests.
- the
extension
option is removed and can be manually done by accessing thepath
property of the file. To replace an extension use the following codefile.path.substring(0, file.lastIndexOf('.')).concat('.extension')
, whereby.extension
is the desired new extension.
Do note options have changed, and are not backwards compatible.
For hoast v1.1.1
.
- Updated dependencies.
- Updated to reflect changes to
hoast
's helpers.
- Reduced module complexity by using new
hoast.helper.parse
andhoast.helper.match
helper functions.
- Updated
planckmatch
module from version1.0.0
to1.0.1
.
For hoast v1.0.0
.
- CodeCov coverage report added to CI workflow.
- Restructured project files.
- Switched from using
nanomatch
toplanckmatch
for filtering file paths.
Do note options have changed, and are not backwards compatible.
Initial release, for hoast v0.1.0
.