glimmerjs / glimmer-experimental

A set of experimental high-level APIs built on Glimmer.js
https://glimmerjs.github.io/glimmer-experimental/
58 stars 26 forks source link

Reexport precompile from babel-plugin-component-templates #95

Closed chiragpat closed 3 years ago

chiragpat commented 3 years ago

Why

Currently if there are any other babel plugins running along with @glimmerx/babel-plugin-component-template, they have to ensure they are running the same version of the compiler as this plugin. Instead of this implicit dependency we will re export the precompile function from the compiler so that there is an explicit dependency between these packages.

How