Comparing version 0.2.2 to 0.2.3
@@ -5,3 +5,3 @@ { | ||
"description": "Build Google Chrome extensions with node.js", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"homepage": "https://github.com/jed/crx", | ||
@@ -8,0 +8,0 @@ "bin": { |
@@ -11,3 +11,3 @@ var fs = require("fs") | ||
if (this instanceof ChromeExtension) { | ||
for (var name in attrs) this[name] = attrs.name | ||
for (var name in attrs) this[name] = attrs[name] | ||
@@ -14,0 +14,0 @@ this.path = join("/tmp", "crx-" + (Math.random() * 1e17).toString(36)) |
@@ -19,5 +19,5 @@ var fs = require("fs") | ||
fs.writeFile(__dirname + "/myFirstExtension.crx", data) | ||
this.destroy() | ||
}) | ||
}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17610