Skip to content

Releases: mcecode/pdf-made-easy

1.0.1 - September 26, 2025

26 Sep 18:13

Choose a tag to compare

🔧 Fixes

  • Fix failing to load config on Windows.

1.0.0 - September 16, 2025

16 Sep 04:46

Choose a tag to compare

⚠️ Breaking

  • This package no longer exports any library functions and is now CLI only.
  • This package now only exports one type, PMEUserConfig, formerly PMEConfig.
  • Walking up parent directories to find the default config file is no longer
    supported.
  • Searching the user's home directory for the default config file is no longer
    supported.
  • JSON, JSONC, and JSON5 are no longer supported as data file formats.
  • Supplying a custom template renderer is no longer supported, as such,
    templateOptions is now liquidOptions.

✨ New

  • Config files can now also be .js or .cjs. If no config file is supplied
    via the --config or -c flag, it will now try to find pme.config.js,
    pme.config.mjs, and pme.config.cjs in the current working directory, in
    that order.
  • A helper for defining config objects, defineConfig, is now exported.
  • Launch options for Puppeteer when it launches a browser instance can now be
    set via the launchOptions config.

0.2.0 - February 01, 2023

01 Feb 06:44

Choose a tag to compare

⚠️ Breaking

Library

  • getDefaultTemplateRenderer is no longer exported.
  • getTemplateRenderer is now optional and is passed as part of options.

✨ New

CLI

  • A custom template renderer can now be set in the config file.

🔧 Fixes

CLI

  • The help command now shows pme as the script name instead of cli.js on Windows.

0.1.0 - January 26, 2023

26 Jan 06:47

Choose a tag to compare

  • Initial release