Skip to content

Releases: taptapship/wiredep

v4.0.0

17 Mar 20:35
Compare
Choose a tag to compare

This is a major release due to the BC listed below.

Updated lodash to 4x. Hopefully there are no breaking changes from that. Tests say there aren't.

BREAKING CHANGE: ok not really, not yet but its the start of one. wiredep-cli will no longer be included as part of this npm package in the next major version. It is still being included in this version as a dependency just in case.

v3.0.1

17 Mar 17:40
Compare
Choose a tag to compare

Patch release to update dependencies to get rid of npm warnings. Functionality should not have changed

v3.0.0

17 Mar 17:32
Compare
Choose a tag to compare

Alert: Breaking changes!

3.0.0 will make some changes which may affect your app. Please read before upgrading.

Testing it out

$ npm install --save-dev wiredep@3.0.0-beta

Breaking changes

REMOVED: Auto-detecting paths outside of a <!-- bower --> block.

Previously, if your source file included a reference to one of your Bower dependencies outside of your <!-- bower --> block, wiredep wouldn't inject it inside of the block. This was originally done to support using Modernizr.js in the <head> section of your HTML file without it being re-injected in the <body>. Not only is this no longer Modernizr's recommended practice, but we have since added the exclude option in wiredep's configuration that would allow you to duplicate this behavior without any magic.

REMOVED: Elite dependencies.

Previously, wiredep kept a list of packages that were known to be required before any other scripts. This included jQuery, es5-shim, etc. This was originally done in the very early days of Bower, as packages weren't properly listing their dependencies (if they even had a bower.json at all!). Things have come a long way since then, and this should no longer be required. If you are using packages that don't list their dependencies properly, offer them a PR with the correction.

ADDED: Support for packages that don't have a main.

Previously, if one of your dependencies didn't have a main file, wiredep wouldn't go through its dependencies to inject their mains. We've since found out this is a common practice for some Polymer packages, and also just makes more sense, so now it doesn't matter if the root component doesn't have a main. wiredep will continue going through its dependencies.

Problems?

If this causes any breakages in your app unrelated to the explanations above, please open an issue.

v3.0.0-beta

29 Jun 18:33
Compare
Choose a tag to compare
v3.0.0-beta Pre-release
Pre-release

Alert: Breaking changes!

3.0.0 will make some changes which may affect your app. Please read before upgrading.

Testing it out

$ npm install --save-dev wiredep@3.0.0-beta

Breaking changes

REMOVED: Auto-detecting paths outside of a <!-- bower --> block.

Previously, if your source file included a reference to one of your Bower dependencies outside of your <!-- bower --> block, wiredep wouldn't inject it inside of the block. This was originally done to support using Modernizr.js in the <head> section of your HTML file without it being re-injected in the <body>. Not only is this no longer Modernizr's recommended practice, but we have since added the exclude option in wiredep's configuration that would allow you to duplicate this behavior without any magic.

REMOVED: Elite dependencies.

Previously, wiredep kept a list of packages that were known to be required before any other scripts. This included jQuery, es5-shim, etc. This was originally done in the very early days of Bower, as packages weren't properly listing their dependencies (if they even had a bower.json at all!). Things have come a long way since then, and this should no longer be required. If you are using packages that don't list their dependencies properly, offer them a PR with the correction.

ADDED: Support for packages that don't have a main.

Previously, if one of your dependencies didn't have a main file, wiredep wouldn't go through its dependencies to inject their mains. We've since found out this is a common practice for some Polymer packages, and also just makes more sense, so now it doesn't matter if the root component doesn't have a main. wiredep will continue going through its dependencies.

Problems?

If this causes any breakages in your app unrelated to the explanations above, please open an issue.

Stylus support, better style matching, and events

30 Oct 16:20
Compare
Choose a tag to compare

Added Stylus support: #119 via @htanjo

Quotation mark matching: c18dd30

No more writing to stdout - 3117e52

v1.7.0

21 May 16:56
Compare
Choose a tag to compare

#66 - support specifying a cwd and checking for a .bowerrc there.

v1.6.0

15 May 01:34
Compare
Choose a tag to compare

CLI usage now supported!

v1.5.0

12 May 21:12
Compare
Choose a tag to compare
  • Added ability to use a replace Function instead of a String with placeholders. #59

v1.3.0

11 Mar 19:12
Compare
Choose a tag to compare
  • default support for less

0.4.0

21 Nov 19:17
Compare
Choose a tag to compare
exclude dependencies!