This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
Releases: samrith-s/parcel-plugin-structurize
Releases · samrith-s/parcel-plugin-structurize
v2.4.4
v2.4.3
v2.4.2
v2.4.1
- Added documentation for
flatten
to README - Removed extra dependencies for tests and general wear and tear
- Handled an edge-case where when images are referenced via an anchor tag (
<a href="images/cat.jpg">Cat</a>
), they are not treated the same way as via an image tag.
v2.4.0
There have been quite a few issues as pointed out in #13. This release addresses the issue and adds some extra configuration options to better tackle it.
- Added
flatten
toStructurizer
. Theflatten
option is used in conjunction with nested HTML files in your source which Parcel by default does not output in a flat structure.
{
"rules": [
{
"match": "*.js",
"folder": "js",
"flatten": true
}
]
}
- Delete all empty folders after structurization.