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.
package/build/commands/main.js
CHANGED
|
@@ -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@
|
|
207
|
+
await installPackage(['@adonisjs/session@7.7.1'], {
|
|
208
208
|
cwd: this.destination,
|
|
209
209
|
packageManager: this.packageManager,
|
|
210
210
|
silent: !this.verbose,
|
package/build/src/databases.d.ts
CHANGED
|
@@ -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:
|
|
6
|
+
name: keyof typeof DIALECTS;
|
|
6
7
|
message: string;
|
|
7
8
|
} | {
|
|
8
9
|
name: string;
|