create-adonisjs 3.3.0 → 3.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/bin/run.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  kernel
4
- } from "../chunk-PRL2GRZO.js";
4
+ } from "../chunk-LKYXQAE4.js";
5
5
 
6
6
  // bin/run.ts
7
7
  kernel.handle(["create-adonisjs", ...process.argv.slice(2)]).catch(console.error);
@@ -318,7 +318,7 @@ var CreateNewApp = class extends BaseCommand {
318
318
  * await this.#migrateDatabase()
319
319
  */
320
320
  async #migrateDatabase() {
321
- await mkdir(join(this.backendSourceDir, "tmp"));
321
+ await mkdir(join(this.backendSourceDir, "tmp"), { recursive: true });
322
322
  await this.#runBashCommand(this.backendSourceDir, "node", ["ace", "migration:run"]);
323
323
  }
324
324
  /**
package/build/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  kernel
3
- } from "./chunk-PRL2GRZO.js";
3
+ } from "./chunk-LKYXQAE4.js";
4
4
  export {
5
5
  kernel
6
6
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-adonisjs",
3
3
  "description": "Scaffold new AdonisJS applications using starter kits",
4
- "version": "3.3.0",
4
+ "version": "3.3.1",
5
5
  "engines": {
6
6
  "node": ">=24.0.0"
7
7
  },