Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Releases: samrith-s/parcel-plugin-structurize

v2.3.0

05 Dec 00:55
Compare
Choose a tag to compare
  • Upgraded packages to fix vulnerabilities.

v2.1.3

10 Sep 13:36
Compare
Choose a tag to compare
  • Fixed #26 which was caused by FileManager rewriting images before move.
  • Fixed README ToC navigation.
  • Added more keywords for better detection.

v2.1.2

01 Sep 23:54
Compare
Choose a tag to compare
  • Updated README to fix issues with ToC navigation.

v2.1.1

31 Aug 15:09
Compare
Choose a tag to compare
  • Massively reduced bundle size from 380kb to 11kb.
  • Updated README and added package description for NPM.

v2.1.0

26 Aug 23:23
Compare
Choose a tag to compare
  • 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 to v2 in the README.

v2.0.2

26 Aug 00:23
Compare
Choose a tag to compare
  • Contains fixes to logging and text.
  • Adds check status to README.

v2.0.1

25 Aug 16:00
Compare
Choose a tag to compare

Contains fixes to README.

v2.0.0

25 Aug 15:39
Compare
Choose a tag to compare

🎉 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

21 Aug 23:11
Compare
Choose a tag to compare

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

21 Aug 14:05
Compare
Choose a tag to compare

Contains some minor README improvements and corrections.