-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor template handling #220
Conversation
becb912
to
e949c3a
Compare
This PR will trigger a major release when merged. |
Codecov Report
@@ Coverage Diff @@
## master #220 +/- ##
==========================================
+ Coverage 83.68% 83.74% +0.05%
==========================================
Files 86 87 +1
Lines 3818 3844 +26
==========================================
+ Hits 3195 3219 +24
- Misses 623 625 +2
Continue to review full report at Codecov.
|
e949c3a
to
cd46ad3
Compare
# [5.0.0](v4.6.2...v5.0.0) (2020-07-29) ### Bug Fixes * **compiler:** refactor template resolution ([#220](#220)) ([b64729b](b64729b)), closes [#216](#216) * **element:** data-sly-element should default to existing tag if not allowed ([#228](#228)) ([3f457ba](3f457ba)), closes [#223](#223) * **uri:** undefined uri ([#229](#229)) ([3dc23b7](3dc23b7)), closes [#221](#221) [#222](#222) ### BREAKING CHANGES * **compiler:** - The templateLoader and scriptResolver are now 2 separate functions that can be set on the compiler - The Runtime.template() has an extra argument 'id' that specifies the group (script) the template is defined.
🎉 This PR is included in version 5.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
BREAKING CHANGE:
templateLoader
andscriptResolver
are now 2 separate functions that can be set on the compilerRuntime.template()
has an extra argument 'id' that specifies the group (script) the template is defined.fixes #216 #208