Socket
Socket
Sign inDemoInstall

gh-pages

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gh-pages - npm Package Compare versions

Comparing version 0.6.0 to 0.7.0

4

changelog.md

@@ -0,1 +1,5 @@

## v0.7.0
* [#32](https://github.com/tschaub/gh-pages/pull/32) - Remove dependency on Lodash. ([@tschaub](https://github.com/tschaub))
## v0.6.0

@@ -2,0 +6,0 @@

10

lib/index.js

@@ -6,3 +6,2 @@ var path = require('path');

var wrench = require('wrench');
var _ = require('lodash');
var glob = require('glob');

@@ -77,3 +76,10 @@

// override defaults with any task options
var options = _.extend({}, defaults, config);
// TODO: Require Node >= 4 and use Object.assign
var options = {};
for (var d in defaults) {
options[d] = defaults[d];
}
for (var c in config) {
options[c] = config[c];
}

@@ -80,0 +86,0 @@ try {

{
"name": "gh-pages",
"version": "0.6.0",
"version": "0.7.0",
"description": "Publish to a gh-pages branch on GitHub (or any other branch on any other remote)",

@@ -33,3 +33,2 @@ "keywords": [

"graceful-fs": "4.1.2",
"lodash": "~2.4.1",
"q": "1.4.1",

@@ -36,0 +35,0 @@ "q-io": "1.13.2",

Sorry, the diff of this file is not supported yet

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