Releases: abelljs/abell
Releases · abelljs/abell
0.9.0 - ignoreInOutput, dev-server on multiple devices
- feat: ignoreInOutput
AddsignoreInOutput
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']
};
-
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. -
"Built Static Files" Added to Logs.
-
Upgrade abell-renderer. (Removes scopedSelector is declared bug)
0.8.0 - Abell.programInfo, scopedSelector!
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-
- Add
{{
true
? <SomeComponent />
: `<div>False</div>`
}}
```
0.7.4 - No user-side changes
Changelog
v0.7.4
- No user-facing changes.
- Internal Tests are refactored
- The paths in the output from
Abell.$root
andAbell.$path
will be forced to use forward slash/
in them instead of OS dependent separators.
0.7.3 - Serve over Network
v0.7.3
- Serve website over Network (#92 by @judicaelandria)
- Add
--print-ip
flag to set if logs should have IP or not. defaulttrue
.
0.7.2 - Fix emoji being merged in abell serve log
- Add space after emoji in
abell serve
(#91 by @siddharthkp)
0.7.1 - Fix crash in abell serve on content change
0.7.0 - Multiple script and style tags in component
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
v0.6.5
- Add
--ignore-plugins
flag to ignore executing plugins. (Thanks to abhijit-hota for #80)
0.6.4 - Fix afterBuild execution
Fix afterBuild
plugin executing after dev-server