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

@adonisjs/application

Package Overview
Dependencies
Maintainers
3
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/application - npm Package Compare versions

Comparing version 8.1.0 to 8.2.0

build/chunk-WIOBO4NG.js

2

build/factories/main.js
import {
Application
} from "../chunk-KSQZ56RF.js";
} from "../chunk-WIOBO4NG.js";
import "../chunk-7WA7C5MT.js";

@@ -5,0 +5,0 @@

@@ -6,3 +6,3 @@ import {

generators_default
} from "./chunk-KSQZ56RF.js";
} from "./chunk-WIOBO4NG.js";
import "./chunk-7WA7C5MT.js";

@@ -9,0 +9,0 @@

@@ -47,3 +47,3 @@ import type { Logger } from '@poppinss/cliui';

*/
export type AssemblerHookNode<Handler extends Function> = () => Promise<{
export type AssemblerHookNode<Handler extends AssemblerHookHandler | SourceFileChangedHookHandler | HttpServerMessageHookHandler> = () => Promise<{
default: Handler;

@@ -66,2 +66,11 @@ }>;

/**
* Handler for the onHttpServerMessage hook
*/
export type HttpServerMessageHookHandler = (ui: {
logger: Logger;
colors: Colors;
}, message: any, actions: {
restartServer: () => void;
}) => any;
/**
* Shape of directories object with known and unknown

@@ -222,2 +231,6 @@ * directories

onBuildCompleted?: AssemblerHookNode<AssemblerHookHandler>[];
/**
* When a message is received from the HTTP server process
*/
onHttpServerMessage?: AssemblerHookNode<AssemblerHookHandler>[];
};

@@ -224,0 +237,0 @@ /**

{
"name": "@adonisjs/application",
"version": "8.1.0",
"version": "8.2.0",
"description": "AdonisJS application class to read app related data",

@@ -28,3 +28,3 @@ "type": "module",

"build": "npm run compile",
"release": "np",
"release": "release-it",
"version": "npm run build",

@@ -68,4 +68,4 @@ "prepublishOnly": "npm run build",

"husky": "^9.0.6",
"np": "^9.2.0",
"prettier": "^3.2.4",
"release-it": "^17.1.1",
"semver": "^7.5.4",

@@ -105,7 +105,13 @@ "ts-dedent": "^2.2.0",

},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},

@@ -112,0 +118,0 @@ "c8": {

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