@adonisjs/assembler
Advanced tools
Comparing version 7.2.1 to 7.2.2
@@ -34,6 +34,6 @@ // src/bundler.ts | ||
await Promise.all([ | ||
this.#config?.onDevServerStarted?.map( | ||
...(this.#config?.onDevServerStarted || []).map( | ||
async (node) => this.#hooks.add("onDevServerStarted", await this.#resolveHookNode(node)) | ||
), | ||
this.#config?.onSourceFileChanged?.map( | ||
...(this.#config?.onSourceFileChanged || []).map( | ||
async (node) => this.#hooks.add("onSourceFileChanged", await this.#resolveHookNode(node)) | ||
@@ -48,6 +48,6 @@ ) | ||
await Promise.all([ | ||
this.#config?.onBuildStarting?.map( | ||
...(this.#config?.onBuildStarting || []).map( | ||
async (node) => this.#hooks.add("onBuildStarting", await this.#resolveHookNode(node)) | ||
), | ||
this.#config?.onBuildCompleted?.map( | ||
...(this.#config?.onBuildCompleted || []).map( | ||
async (node) => this.#hooks.add("onBuildCompleted", await this.#resolveHookNode(node)) | ||
@@ -54,0 +54,0 @@ ) |
{ | ||
"name": "@adonisjs/assembler", | ||
"description": "Provides utilities to run AdonisJS development server and build project for production", | ||
"version": "7.2.1", | ||
"version": "7.2.2", | ||
"engines": { | ||
@@ -6,0 +6,0 @@ "node": ">=18.16.0" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
185749