Skip to content

Commit

Permalink
Merge pull request #210 from AthennaIO/develop
Browse files Browse the repository at this point in the history
chore(npm): update dependencies
  • Loading branch information
jlenon7 authored Aug 26, 2024
2 parents e17746d + 0f594a1 commit 9e2cfc6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 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/artisan",
"version": "5.0.0",
"version": "5.1.0",
"description": "The Athenna CLI application. Built on top of commander and inspired in @adonisjs/ace.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions src/artisan/ArtisanImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class ArtisanImpl {
/**
* Call an Artisan command inside a child process.
* This method needs to execute a file to bootstrap
* under the hood, by default the "Path.bootstrap(`artisan.${Path.ext()}`)"
* under the hood, by default the "Path.bin(`artisan.${Path.ext()}`)"
* is used and the executor is "sh node".
*
* @example
Expand All @@ -148,7 +148,7 @@ export class ArtisanImpl {
options = Options.create(options, {
path: Config.get(
'rc.artisan.child.path',
Path.bootstrap(`console.${Path.ext()}`)
Path.bin(`console.${Path.ext()}`)
)
})

Expand Down
4 changes: 2 additions & 2 deletions src/testing/plugins/command/TestCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export class TestCommand {
/**
* The Artisan file path that will be used to run commands.
*
* @default Path.bootstrap(`console.${Path.ext()}`)
* @default Path.bin(`console.${Path.ext()}`)
*/
public static artisanPath = Path.bootstrap(`console.${Path.ext()}`)
public static artisanPath = Path.bin(`console.${Path.ext()}`)

/**
* Set the artisan file path.
Expand Down
2 changes: 1 addition & 1 deletion src/types/CallInChildOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type CallInChildOptions = {
* The artisan file path that will be used to
* invoke the child process.
*
* @default Path.bootstrap(`console.${Path.ext()}`)
* @default Path.bin(`console.${Path.ext()}`)
*/
path?: string
}

0 comments on commit 9e2cfc6

Please sign in to comment.