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

wulp

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wulp - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

3

package.json
{
"name": "wulp",
"version": "0.1.0",
"version": "0.1.1",
"description": "Gulp tasks that can be run directly or as part of a watch task.",

@@ -19,4 +19,5 @@ "license": "Apache-2.0",

"pretty-ms": "^2.1.0",
"stacky": "^1.3.1",
"stream-array": "^1.1.1"
}
}
var debug = require('debug')('wulp');
var micromatch = require('micromatch');
var prettyMs = require('pretty-ms');
var stacky = require('stacky');
var streamArray = require('stream-array');

@@ -134,3 +135,3 @@ var util = require('gulp-util');

if (error) {
this._log(util.colors.red('Task "' + nextTaskName + '" failed in ' + duration));
this._log(util.colors.red('\nTask "' + nextTaskName + '" failed in ' + duration +':\n') + this._prettyError(error));
} else {

@@ -188,3 +189,14 @@ this._log('Completed task "' + nextTaskName + '" in ' + duration);

Wulp.prototype._prettyError = function _prettyError(error) {
if (!error.stack) return String(error);
return stacky.pretty(error.stack, {
indent: ' ',
filter: function(line) {
return line.location.match(/\/node_modules\//);
},
});
}
module.exports = new Wulp({});
module.exports.Wulp = Wulp;
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