This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
Releases: abelljs/abell-renderer
Releases · abelljs/abell-renderer
0.4.2 - Use scopedSelector inside setTimeout and other delayed callbacks
0.4.1 - fix scopedSelector is defined bug
- Fix
scopedSelector
is defined bug by changingconst scopedSelector =
towindow.scopedSelector =
0.4.0 - Scoped Scripts are here!!
Features
- Add
scopedSelector
andscopedSelectorAll
to component scripts - Add
__dirname
,__filename
to files.
Bug Fixes
- Fixed #37
v0.3.2 - Performance Upgrade
v0.3.2 (Latest)
- Ignore scoping HTML when not needed. (by @judicaelandria (Issue: #32, PR: #34)
0.3.1 - Scoped CSS
v0.3.1 (Latest)
- Fix exitting dev-server on module not found errors.
v0.3.0
- Scoped CSS Support (Hugee shoutout to @pantharshit00)
- Syntax warnings for multiple statements in a block.
- More reliable code.
- Bug fix for
const
not being true constant. - Fix multiple values-less attribute parsing error
- Better file not found errors for .abell and other files.
- Refactor
- Moved to JEST for testing (@pantharshit00)
0.2.0 - Abell Components
- Default value of props in components is now empty object instead of undefined.
- Multi-line support for writing component tag.
- Convert Array into String by joining the values.
- Now devs would not have to write
.join
next to map, to remove commas. - Naming rule of having
.component.abell
extension, removed. Any file that ends with.abell
, can be a component. - Filename and error line in error stack 🎉
- Error when brackets and value had no space, fixed (e.g.
{{a}}
) - Nested Components
- Better Error logs
- Support for Abell Components when
allowComponents
flag is passed in options.
0.2.0-alpha.2 - Abell Components First Working Prototype
- Abell Components Working Prototype
- Lodash Vulnerability fix
0.1.11
Changelog
- Trim value before adding.
0.1.7 - 0.1.10
Changelog
v0.1.10
- BREAKING CHANGE, SECURITY UPDATE
To userequire()
in the template, user will have to passallowRequire: true
in option. This option is by default set to false.const newHTMLTemplate = abellRenderer.render( myAbellTemplate, mySandbox, {allowRequire: true} );
v0.1.9
- Fix to recursively find and create nested
.abell
files
v0.1.8
- basePath is set to paths relative to input files.
v0.1.7
- BUG FIX
Allowing CLI to build without output path
0.1.6
Changelog
- MAJOR CHANGE
Added ability to escape the brackets with a slash('')