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

adonisjs-scheduler

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonisjs-scheduler - npm Package Compare versions

Comparing version 0.1.1 to 0.1.3

4

build/commands/SchedulerCommand.js

@@ -29,10 +29,14 @@ "use strict";

process.on('SIGTERM', () => {
Logger.info(`SIGTERM received. Stopping all tasks...`);
for (const task of tasks) {
task.stop();
}
process.exit(0);
});
process.on('SIGINT', () => {
Logger.info(`SIGINT received. Stopping all tasks...`);
for (const task of tasks) {
task.stop();
}
process.exit(0);
});

@@ -39,0 +43,0 @@ for (let index = 0; index < Scheduler.items.length; index++) {

2

package.json
{
"name": "adonisjs-scheduler",
"version": "0.1.1",
"version": "0.1.3",
"description": "Task scheduler for AdonisJS",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/KABBOUCHI/adonisjs-scheduler#readme",

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