Socket
Socket
Sign inDemoInstall

@adonisjs/repl

Package Overview
Dependencies
2
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0-4 to 4.0.0-5

16

build/src/repl.d.ts

@@ -33,2 +33,18 @@ /// <reference types="@types/node" resolution-mode="require"/>

/**
* Returns the collection of registered methods
*/
getMethods(): {
[name: string]: {
handler: MethodCallback;
options: MethodOptions & {
width: number;
};
};
};
/**
* Register a compiler. Make sure register the compiler before
* calling the start method
*/
useCompiler(compiler: Compiler): this;
/**
* Start the REPL server

@@ -35,0 +51,0 @@ */

@@ -286,2 +286,16 @@ /*

/**
* Returns the collection of registered methods
*/
getMethods() {
return this.#customMethods;
}
/**
* Register a compiler. Make sure register the compiler before
* calling the start method
*/
useCompiler(compiler) {
this.#compiler = compiler;
return this;
}
/**
* Start the REPL server

@@ -288,0 +302,0 @@ */

2

package.json
{
"name": "@adonisjs/repl",
"description": "REPL for AdonisJS",
"version": "4.0.0-4",
"version": "4.0.0-5",
"engines": {

@@ -6,0 +6,0 @@ "node": ">=18.16.0"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc