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.3.0
v2.1.3
v2.1.2
v2.1.1
v2.1.0
-
The
verbose
configuration option now handles different logging levels. -
Added a new
displayAssetsMap
to display the generated assets map which looks like this: -
Added migration guide from
v1
tov2
in the README.
v2.0.2
v2.0.1
v2.0.0
🎉 Official release of v2
After a (relatively) short time spent on rewriting this plugin, v2
is officially ready for release.
This version comes with a host of improvements to both the speed and configurative ability of the plugin. Some of the major improvements include:
- Refined control over file matching using glob patterns.
- Sensible defaults to restructure your files in a sane manner.
- No more iteration over constructed HTML structure using JSDOM.
- Supports literally any file type to suit your use case.
v2.0.0-beta.2
The new configuration structure allows to specify whether logging should be verbose. The new config structure is as follows:
type Structurizer = {
match: string;
folder: string;
};
type Config = {
verbose?: boolean;
rules: Structurizer[];
};
The default config has also been updated to reflect the changes.
v2.0.0-beta.1
Contains some minor README improvements and corrections.