create-adonisjs 2.4.0 → 2.4.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.
@@ -204,7 +204,7 @@ export class CreateNewApp extends BaseCommand {
204
204
  * Configures the session package
205
205
  */
206
206
  async #configureSession() {
207
- await installPackage(['@adonisjs/session@latest'], {
207
+ await installPackage(['@adonisjs/session@7.7.1'], {
208
208
  cwd: this.destination,
209
209
  packageManager: this.packageManager,
210
210
  silent: !this.verbose,
@@ -1,8 +1,9 @@
1
+ import { DIALECTS } from '@adonisjs/presets/lucid';
1
2
  /**
2
3
  * List of known databases that can be used with Lucid
3
4
  */
4
5
  export declare const databases: ({
5
- name: "sqlite" | "mysql" | "libsql" | "postgres" | "mssql";
6
+ name: keyof typeof DIALECTS;
6
7
  message: string;
7
8
  } | {
8
9
  name: string;
@@ -29,6 +29,6 @@ export const adapters = [
29
29
  {
30
30
  name: 'skip',
31
31
  message: 'Skip',
32
- hint: 'I want to configure Interia manually',
32
+ hint: 'I want to configure Inertia manually',
33
33
  },
34
34
  ];
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": "2.4.0",
4
+ "version": "2.4.1",
5
5
  "engines": {
6
6
  "node": ">=18.16.0"
7
7
  },