This repository was archived by the owner on Dec 30, 2019. It is now read-only.
Releases: flaviait/ng2-template-libs
Releases · flaviait/ng2-template-libs
0.4.3
0.4.2
Fix copy issues
Bug fixes
Copying files with a different format than utf-8 lead to corrupted destination files.
This was due to reading the file and interpreting it as utf-8 before writing it to the destination.
Now the copying is done with a performant stream solution.
This solution also has two performance benefits:
- Less memory usage, since the read data is immediately written to the output file.
- Faster, because we start writing before the whole source file is read out.
Improve configurations
Breaking changes
- The configuration interface for livereload and the HMR has changed.
Please update your configuration and usages accordingly.
Features
- You can now have multiple style processing configurations.
- Style processing configuration is more flexible now.
- Watching of SASS files with sass-graph allows us to rebuild sass only when really needed.
- Disabling of single tools executed by
devordistcan be done by setting the according configuration to null.