Skip to content

Releases: abelljs/abell

0.9.0 - ignoreInOutput, dev-server on multiple devices

23 Jan 10:07
240ec9c
Compare
Choose a tag to compare
  1. feat: ignoreInOutput
    Adds ignoreInOutput configuration again (It was possible in earlier Abell versions)

You can pass an array of file/folder which should be ignored when generating output.

If there are files that output some other file. You can use this to ignore source files.

// abell.config.js
module.exports = {
  ignoreInOutput: ['styles.scss']
};
  1. fix: dev-server changes not reflecting in multiple devices
    If you connect to dev-server from multiple devices, your changes will now reflect in all of them without manual reload.

  2. "Built Static Files" Added to Logs.

  3. Upgrade abell-renderer. (Removes scopedSelector is declared bug)
    

0.8.0 - Abell.programInfo, scopedSelector!

20 Nov 09:38
Compare
Choose a tag to compare

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>` 
}}
```

0.7.4 - No user-side changes

27 Oct 19:21
Compare
Choose a tag to compare

Changelog

v0.7.4

  • No user-facing changes.
  • Internal Tests are refactored
  • The paths in the output from Abell.$root and Abell.$path will be forced to use forward slash / in them instead of OS dependent separators.

0.7.3 - Serve over Network

23 Oct 15:21
Compare
Choose a tag to compare

v0.7.3

  • Serve website over Network (#92 by @judicaelandria)
  • Add --print-ip flag to set if logs should have IP or not. default true.

0.7.2 - Fix emoji being merged in abell serve log

22 Oct 11:09
Compare
Choose a tag to compare

0.7.1 - Fix crash in abell serve on content change

21 Oct 16:38
Compare
Choose a tag to compare

0.7.0 - Multiple script and style tags in component

21 Oct 09:17
f3e4b11
Compare
Choose a tag to compare

Added support for multiple styles and scripts in a single component (Issue #86, PR #87)

This snippet will add content from second style tag to head of the index.html page, and add first style tag content to main.abell.css file.

<AbellComponent>
<template>
  <div>Hello</div>
</template>

<style>
div { background-color: #333; }
</style>

<style inlined>
div { color: #fff; }
</style>
</AbellComponent>

0.6.5 - Add ignore flag

01 Oct 09:43
Compare
Choose a tag to compare

v0.6.5

  • Add --ignore-plugins flag to ignore executing plugins. (Thanks to abhijit-hota for #80)
    

0.6.4 - Fix afterBuild execution

27 Sep 07:57
Compare
Choose a tag to compare

Fix afterBuild plugin executing after dev-server

0.6.3 - Remove extra logs from plugins

26 Sep 18:31
Compare
Choose a tag to compare
  • Less loggy logs for beforeHTMLWrite

Instead of logging Executing beforeHTMLWrite of xyz plugin before every page log. Now it only logs one line on the top.
> Activate beforeHTMLWrite for plugins/index.js ...Built another-blog/index.html