Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bower

Package Overview
Dependencies
Maintainers
2
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bower - npm Package Compare versions

Comparing version 0.8.4 to 0.8.5

4

CHANGELOG.md
# Changelog
## 0.8.5 - 2013-03-04
- Fix `cache-clean` command clearing the completion cache when the command was called with specific packages
- Add error message when an error is caught parsing an invalid `component.json`
## 0.8.4 - 2013-03-01

@@ -4,0 +8,0 @@

@@ -126,2 +126,5 @@ // ==========================================

completion: function (next) {
// Do not run completion cache if packages where passed
if (pkgs && pkgs.length) return next();
rimraf(config.completion, function (err) {

@@ -128,0 +131,0 @@ if (err) {

4

lib/core/manager.js

@@ -66,5 +66,5 @@ // ==========================================

try {
this.json = JSON.parse(json);
this.json = JSON.parse(json);
} catch (e) {
return this.emit('error', new Error('There was an error while reading the ' + config.json));
return this.emit('error', new Error('There was an error while reading the ' + config.json + ': ' + e.message));
}

@@ -71,0 +71,0 @@ this.name = this.json.name;

{
"name": "bower",
"description": "The browser package manager.",
"version": "0.8.4",
"version": "0.8.5",
"author": "Twitter",

@@ -6,0 +6,0 @@ "licenses": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc