Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 2.17 KB

CHANGELOG.md

File metadata and controls

59 lines (40 loc) · 2.17 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.2.2 (2020-10-16)

PLUGIN UNARCHIVED: Archived when the preprocessor option was added to @snowpack/plugin-svelte, however since a Snowpack plugin's resolve.input doesn't allow dyanmic input it was not possible to make Snowpack aware of extensions beyond .svelte.

0.2.1 (2020-10-12)

PLUGIN DEPRECATED: Snowpack's plugin-svelte now allows preprocessing option pass through therefore allowing svelte-preprocess and other preprocessors, like MDSvex, to be passed in via plugin options.

0.2.0 (2020-09-30)

Features

  • custom extensions (0fc7da3), closes #3
    • Use MDSvex options to customize extensions imported for .md|.svx files

example: snowpack.config.js

plugins: [
  [
    'snowpack-plugin-mdsvex',
    {
      mdsvexOptions: { extendsions: '.dvx' },
    },
  ],
]
  • optional css output (46f493e), closes #2
    • Default: false. Set true to output CSS.

example: snowpack.config.js

plugins: [
  [
    'snowpack-plugin-mdsvex',
    {
      css: true,
    },
  ],
]

0.1.1 (2020-09-29)

*Cough*...bump

Bug Fixes

0.1.0 (2020-09-29)

🎉 Snowpack-Plugin-MDSVEX Initial release! View README for usage and options.