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

rollup-plugin-glimmer-template-tag@0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Mar 13:26
· 41 commits to main since this release
2e838ee

Minor Changes

  • #11 5938936 Thanks @NullVoxPopuli! - Add option to the rollup plugin so that folks can choose to separately due to the two-step transform.

    In 0.2.0, it became possible to only use the rollup plugin for the entirety of the transform, whereas in 0.1.0, a babel plugin was needed as well.

    In this version, you may go back to the 0.1.0 style configuration via:

    // rollup.config.mjs
    export default {
      output: addon.output(),
      plugins: [
        // ...
        glimmerTemplateTag({ preprocessOnly: true }),
        // ...
      ],
    };