Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

bowerfresh

nmccready3MIT0.0.1

keep bower dependencies fresh

bower, fresh, dependencies

readme

bowerfresh

Purpose is to make sure some dependencies (especially gitrepo's (master)) are always fresh. It does this by:

  • cleaning bower cache
  • uninstalling the dependencies

To uilize bowerfresh add the sofresh property. See this bower file. Then in your buidl routine (package.json or something), do a preinstall and run bowerfresh.

bower.json (add to)

"sofresh": [
  "dep1",
  "dep2"
]

preinstall in package.json as an example

 "scripts": {
    "preinstall": "bowerfresh",
  },