Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/core",
"version": "5.31.0",
"version": "5.32.0",
"description": "One foundation for multiple applications.",
"license": "MIT",
"author": "João Lenon <lenon@athenna.io>",
Expand Down
2 changes: 1 addition & 1 deletion src/types/CronOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type CronOptions = {
*
* @default false
*/
forceIgniteFire: boolean
forceIgniteFire?: boolean

/**
* The path to the cron routes.
Expand Down
2 changes: 1 addition & 1 deletion src/types/HttpOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type HttpOptions = {
*
* @default false
*/
forceIgniteFire: boolean
forceIgniteFire?: boolean

/**
* Only initialize the server without booting it. Useful when you want to
Expand Down
2 changes: 1 addition & 1 deletion src/types/WorkerOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type WorkerOptions = {
*
* @default false
*/
forceIgniteFire: boolean
forceIgniteFire?: boolean

/**
* The path to the worker routes.
Expand Down
Loading