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

adonisjs-scheduler

Package Overview
Dependencies
Maintainers
1
Versions
39
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.0.21 to 0.0.22

1

build/commands/SchedulerCommand.js

@@ -45,2 +45,3 @@ "use strict";

}, {
scheduled: command.config.enabled,
runOnInit: command.config.immediate

@@ -47,0 +48,0 @@ });

@@ -6,2 +6,3 @@ import { BaseCommand } from '@adonisjs/core/build/standalone';

config: {
enabled: boolean;
immediate: boolean;

@@ -11,2 +12,3 @@ withoutOverlapping: boolean;

};
skip(state?: boolean): this;
immediate(state?: boolean): this;

@@ -13,0 +15,0 @@ withoutOverlapping(expiresAt?: number): this;

@@ -18,2 +18,3 @@ "use strict";

value: {
enabled: true,
immediate: false,

@@ -25,2 +26,6 @@ withoutOverlapping: false,

}
skip(state = true) {
this.config.enabled = state;
return this;
}
immediate(state = true) {

@@ -27,0 +32,0 @@ this.config.immediate = state;

2

package.json
{
"name": "adonisjs-scheduler",
"version": "0.0.21",
"version": "0.0.22",
"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