0.0.1 • Published 10 years ago

bowerfresh v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

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",
  },