Skip to content

0.8.0 - Abell.programInfo, scopedSelector!

Compare
Choose a tag to compare
@saurabhdaware saurabhdaware released this 20 Nov 09:38
· 365 commits to main since this release

Changelog

  • Add Abell.programInfo variable with information about paths and abell process.
  • Abell Renderer Updates
    • Add scopedSelector in Abell Components! 🥳
    • Add __filename, __dirname variables.
    • Fix not printing falsy values issue {{ 0 }}, {{ false }}
    • Support components inside Abell Blocks-
      This works now-
{{ 
  true 
  ? <SomeComponent />
  : `<div>False</div>` 
}}
```