Skip to content

Commit 37cced8

Browse files
authored
Merge pull request #267 from AthennaIO/develop
chore(type): set forceIgniteFire as optional
2 parents 8ad29c0 + 9ba1c3e commit 37cced8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@athenna/core",
3-
"version": "5.31.0",
3+
"version": "5.32.0",
44
"description": "One foundation for multiple applications.",
55
"license": "MIT",
66
"author": "João Lenon <[email protected]>",

src/types/CronOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type CronOptions = {
1515
*
1616
* @default false
1717
*/
18-
forceIgniteFire: boolean
18+
forceIgniteFire?: boolean
1919

2020
/**
2121
* The path to the cron routes.

src/types/HttpOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type HttpOptions = {
1515
*
1616
* @default false
1717
*/
18-
forceIgniteFire: boolean
18+
forceIgniteFire?: boolean
1919

2020
/**
2121
* Only initialize the server without booting it. Useful when you want to

src/types/WorkerOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type WorkerOptions = {
1515
*
1616
* @default false
1717
*/
18-
forceIgniteFire: boolean
18+
forceIgniteFire?: boolean
1919

2020
/**
2121
* The path to the worker routes.

0 commit comments

Comments
 (0)