Skip to content

Commit 36376fe

Browse files
committed
chore(package): update dependencies
1 parent f7e5bf7 commit 36376fe

File tree

4 files changed

+72
-39
lines changed

4 files changed

+72
-39
lines changed

package-lock.json

+64-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
},
4242
"homepage": "https://github.com/adonisjs/adonis-framework#readme",
4343
"devDependencies": {
44-
"@adonisjs/fold": "^6.1.0",
44+
"@adonisjs/fold": "^6.1.1",
4545
"@adonisjs/mrm-preset": "^2.0.3",
46-
"@adonisjs/sink": "^2.0.4",
46+
"@adonisjs/sink": "^2.0.7",
4747
"@poppinss/dev-utils": "^1.0.0",
4848
"@types/node": "^12.6.8",
4949
"commitizen": "^4.0.3",
@@ -81,14 +81,14 @@
8181
}
8282
},
8383
"dependencies": {
84-
"@poppinss/application": "^1.0.6",
84+
"@poppinss/application": "^1.0.7",
8585
"@poppinss/config": "^1.0.6",
8686
"@poppinss/env": "^1.0.5",
8787
"@poppinss/events": "^1.0.1",
8888
"@poppinss/hash": "^1.0.3",
8989
"@poppinss/http-server": "^1.1.8",
90-
"@poppinss/logger": "^1.1.1",
91-
"@poppinss/request": "^1.0.10",
90+
"@poppinss/logger": "^1.1.2",
91+
"@poppinss/request": "^1.0.11",
9292
"@poppinss/response": "^1.0.10",
9393
"@poppinss/utils": "^1.0.4",
9494
"find-package-json": "^1.2.0",

providers/AppProvider.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default class AppProvider {
4646
*/
4747
protected $registerConfigProvider () {
4848
this.$container.singleton('Adonis/Core/Config', () => {
49-
const app = this.$container.use<ApplicationContract>('Application')
49+
const app = this.$container.use<ApplicationContract>('Adonis/Core/Application')
5050
return new Config(requireAll(app.configPath()))
5151
})
5252
}
@@ -66,7 +66,7 @@ export default class AppProvider {
6666
*/
6767
protected $registerEnv () {
6868
this.$container.singleton('Adonis/Core/Env', () => {
69-
const app = this.$container.use<ApplicationContract>('Application')
69+
const app = this.$container.use<ApplicationContract>('Adonis/Core/Application')
7070
const { envContents, testEnvContent } = envLoader(app.appRoot)
7171

7272
env.process(envContents, false)

src/Ignitor/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class Ignitor {
7777
* themselves.
7878
*/
7979
this.application = new Application(this._appRoot, ioc, rcContents, pkg)
80-
ioc.singleton('Adonis/Core/Application', () => this)
80+
ioc.singleton('Adonis/Core/Application', () => this.application)
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)