Skip to content

0.10.0

Compare
Choose a tag to compare
@Thanood Thanood released this 06 Jul 17:44
· 1039 commits to master since this release

0.10.0 (2016-07-06)

Features

  • webpack compatibility: This version of the bridge should be compatible with webpack (finally). Tested with skeleton-webpack beta 2.0.0

possible breaking change

For being compatible with webpack we had to remove the hard-coded dependency on Dogfalo/materialize so you can use whatever you want. The Materialize npm package is called materialize-css so import 'materialize'; would result in an error.

You will have to provide your own Materialize import now. For example put this in main.js:

import 'materialize';

or for npm/webpack:

import 'materialize-css';

Downside of this is Materialize gets initialized twice with webpack. I've raised an issue here: aurelia/skeleton-navigation#564

Upside of this is you can now use forks if you want. 😄

Bug Fixes

  • md-datepicker: fix value property not being set after pickadate parses it internally (b21ef11)
  • package.json: remove trailing comma (fcffd23)
  • webpack: add components to import via webpack (b153ea9)