New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

composer

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

composer - npm Package Versions

134

0.14.1

Diff

doowb
published 0.14.0 •

Changelog

Source

v0.14.0

  • Updates [bach][] to 1.0.0.
  • Errors emitted from inside a task now have the 'in task "foo":' prefixed to the error message. see issue #22
  • Expose .runInfo on the task object for use in event listeners and task functions.
  • Add .duration to the .run/.runInfo object that shows the duration in a human friendly format. This will also show the current duration from the time the task started to the time it's called if used inside a task function. see issue #23
app.task('foo', function(cb) {
  console.log(this.runInfo.duration);
});
doowb
published 0.13.0 •

Changelog

Source

v0.13.0

  • Skip tasks by setting the options.skip option to the name of the task or an array of task names.
  • Making additional err properties non-enumerable to cut down on error output.
doowb
published 0.12.0 •

Changelog

Source

v0.12.0

  • You can no longer get a task from the .task() method by passing only the name. Instead do var task = app.tasks[name];
  • Passing only a name and no dependencies to .task() will result in a noop task being created.
  • options may be passed to .build(), .series() and .parallel()
  • options passed to .build() will be merged onto task options before running the task.
  • Skip tasks by setting their options.run option to false.
jonschlinkert
published 0.11.4 •

doowb
published 0.11.3 •

Changelog

Source

v0.11.3

  • Allow passing es2015 javascript generator functions to .task().
doowb
published 0.11.2 •

Changelog

Source

v0.11.2

  • Allow using glob patterns for task dependencies.
jonschlinkert
published 0.11.1 •

doowb
published 0.11.0 •

Changelog

Source

v0.11.0

  • BREAKING CHANGE: Removed .watch(). Watch functionality can be added to [base][] applications using [base-watch][].
doowb
published 0.10.0 •

Changelog

Source

v0.10.0

  • Removes session.
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