Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit d38aa96

Browse files
authored
fix: Adonis commands always running nuxt build (#268)
1 parent 3cce16a commit d38aa96

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

template/frameworks/adonis/providers/NuxtProvider.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ class NuxtProvider extends ServiceProvider {
1010
}
1111

1212
async boot() {
13-
const nuxt = this.app.use('Service/Nuxt')
14-
if (nuxt.options.dev) {
15-
await new Builder(nuxt).build()
16-
} else {
17-
await nuxt.ready()
13+
const Helpers = this.app.use('Helpers')
14+
if (!Helpers.isAceCommand()) {
15+
const nuxt = this.app.use('Service/Nuxt')
16+
if (nuxt.options.dev) {
17+
await new Builder(nuxt).build()
18+
} else {
19+
await nuxt.ready()
20+
}
1821
}
1922
}
2023
}

0 commit comments

Comments
 (0)