Skip to content
This repository was archived by the owner on Dec 30, 2019. It is now read-only.

Releases: flaviait/ng2-template-libs

0.4.3

10 Jan 14:57

Choose a tag to compare

Changes

  • Compile config.ts without type checking. This way we don't have to make assumptions on the target environment.
    You can still benefit from the Autosuggestions within the IDE.

0.4.2

10 Jan 08:50

Choose a tag to compare

Changes

  • Update dependencies to newest versions
  • Compile config.ts to the latest ES target to prevent typing conflicts, if the consumer of this package uses typings that rely on a new ES standard's typings

Fix copy issues

03 Jan 06:52

Choose a tag to compare

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

01 Jan 17:49

Choose a tag to compare

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 dev or dist can be done by setting the according configuration to null.

v0.1.1

13 Nov 12:43

Choose a tag to compare

Fix: The lib directory was excluded by npm, because it was excluded in the .gitignore. Added a .npmignore which does not exclude it.

v0.1.0

13 Nov 12:40

Choose a tag to compare

This is the first release of the ng2-jspm-template-libs.
It contains some tooling that is consumed by the ng2-jspm-template.