Skip to content

Commit

Permalink
chore(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Aug 26, 2024
1 parent 634b3e4 commit c7645b4
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
78 changes: 39 additions & 39 deletions package-lock.json

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

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/queue",
"version": "4.11.0",
"version": "5.0.0",
"description": "The Athenna queue handler.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down Expand Up @@ -53,15 +53,15 @@
"#tests": "./tests/index.js"
},
"devDependencies": {
"@athenna/artisan": "^4.45.0",
"@athenna/common": "^4.46.0",
"@athenna/config": "^4.27.0",
"@athenna/database": "^4.65.0",
"@athenna/ioc": "^4.27.0",
"@athenna/logger": "^4.29.0",
"@athenna/test": "^4.30.0",
"@athenna/tsconfig": "^4.19.0",
"@athenna/view": "^4.33.0",
"@athenna/artisan": "^5.0.0",
"@athenna/common": "^5.0.0",
"@athenna/config": "^5.0.0",
"@athenna/database": "^5.0.0",
"@athenna/ioc": "^5.0.0",
"@athenna/logger": "^5.0.0",
"@athenna/test": "^5.0.0",
"@athenna/tsconfig": "^5.0.0",
"@athenna/view": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"better-sqlite3": "^10.1.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/helpers/BaseCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class BaseCommandTest {

@AfterEach()
public async afterEach() {
await Folder.safeRemove(Path.app())
await File.safeRemove(Path.workers('TestWorker.ts'))
await Folder.safeRemove(Path.fixtures('storage'))

await new File(Path.pwd('package.json')).setContent(this.originalPackageJson)
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/commands/MakeWorkerCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ export default class MakeWorkerCommandTest extends BaseCommandTest {
output.assertSucceeded()
output.assertLogged('[ MAKING WORKER ]')
output.assertLogged('[ success ] Worker "TestWorker" successfully created.')
output.assertLogged('[ success ] Athenna RC updated: [ workers += "#app/workers/TestWorker" ]')
output.assertLogged('[ success ] Athenna RC updated: [ workers += "#src/workers/TestWorker" ]')

const { athenna } = await new File(Path.pwd('package.json')).getContentAsJson()

assert.isTrue(await File.exists(Path.workers('TestWorker.ts')))
assert.containsSubset(athenna.workers, ['#app/workers/TestWorker'])
assert.containsSubset(athenna.workers, ['#src/workers/TestWorker'])
}

@Test()
Expand Down

0 comments on commit c7645b4

Please sign in to comment.