This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
Releases: NullVoxPopuli/rollup-plugin-glimmer-template-tag
Releases · NullVoxPopuli/rollup-plugin-glimmer-template-tag
rollup-plugin-glimmer-template-tag@0.4.0
Minor Changes
- #15
bf84978
Thanks @NullVoxPopuli! - Invert (again) the 2-phase behavior. preprocessOnly will be try by default, and it can be set to false if you want single-file-configuration (at the cost of double babel parse). README has been updated accordingly
rollup-plugin-glimmer-template-tag@0.3.0
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 }), // ... ], };
rollup-plugin-glimmer-template-tag@0.2.0
Minor Changes
- #6
fe9f110
Thanks @NullVoxPopuli! - The entirety of the<template>
transform is done in rollup.
Now folks don't need to remember to configure babel in addition to the existing needed rollup config.
rollup-plugin-glimmer-template-tag@0.1.0
Minor Changes
- #1
123a136
Thanks @NullVoxPopuli! - Initial release