@adonisjs/core 5.8.0 → 5.8.3

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.
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  declare module '@ioc:Adonis/Core/TestUtils' {
3
4
  import type { Server as HttpsServer } from 'https';
4
5
  import type { MacroableConstructorContract } from 'macroable';
@@ -0,0 +1,2 @@
1
+ export { InferListFromConfig, hashConfig } from '@adonisjs/hash/build/config';
2
+ export { InferDisksFromConfig, driveConfig } from '@adonisjs/drive/build/config';
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /*
3
+ * @adonisjs/core
4
+ *
5
+ * (c) Harminder Virk <virk@adonisjs.com>
6
+ *
7
+ * For the full copyright and license information, please view the LICENSE
8
+ * file that was distributed with this source code.
9
+ */
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ exports.driveConfig = exports.hashConfig = void 0;
12
+ var config_1 = require("@adonisjs/hash/build/config");
13
+ Object.defineProperty(exports, "hashConfig", { enumerable: true, get: function () { return config_1.hashConfig; } });
14
+ var config_2 = require("@adonisjs/drive/build/config");
15
+ Object.defineProperty(exports, "driveConfig", { enumerable: true, get: function () { return config_2.driveConfig; } });
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import Env from '@ioc:Adonis/Core/Env'
9
- import { driveConfig } from '@adonisjs/core/config'
9
+ import { driveConfig } from '@adonisjs/core/build/config'
10
10
  import Application from '@ioc:Adonis/Core/Application'
11
11
 
12
12
  /*
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import Env from '@ioc:Adonis/Core/Env'
9
- import { hashConfig } from '@adonisjs/core/config'
9
+ import { hashConfig } from '@adonisjs/core/build/config'
10
10
 
11
11
  /*
12
12
  |--------------------------------------------------------------------------
@@ -5,7 +5,7 @@
5
5
  * file.
6
6
  */
7
7
 
8
- import { InferDisksFromConfig } from '@adonisjs/core/config'
8
+ import { InferDisksFromConfig } from '@adonisjs/core/build/config'
9
9
  import driveConfig from '../config/drive'
10
10
 
11
11
  declare module '@ioc:Adonis/Core/Drive' {
@@ -5,7 +5,7 @@
5
5
  * file.
6
6
  */
7
7
 
8
- import { InferListFromConfig } from '@adonisjs/core/config'
8
+ import { InferListFromConfig } from '@adonisjs/core/build/config'
9
9
  import hashConfig from '../config/hash'
10
10
 
11
11
  declare module '@ioc:Adonis/Core/Hash' {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adonisjs/core",
3
- "version": "5.8.0",
3
+ "version": "5.8.3",
4
4
  "description": "Core of AdonisJS",
5
5
  "exports": {
6
6
  ".": {
@@ -30,6 +30,8 @@
30
30
  "build/providers",
31
31
  "build/src",
32
32
  "build/instructions.js",
33
+ "build/config.js",
34
+ "build/config.d.ts",
33
35
  "build/standalone.js",
34
36
  "build/standalone.d.ts"
35
37
  ],
@@ -66,6 +68,8 @@
66
68
  "homepage": "https://github.com/adonisjs/core#readme",
67
69
  "devDependencies": {
68
70
  "@adonisjs/assembler": "^5.6.2",
71
+ "@adonisjs/fold": "^8.2.0",
72
+ "@adonisjs/logger": "^4.1.4",
69
73
  "@adonisjs/mrm-preset": "^5.0.3",
70
74
  "@adonisjs/repl": "^3.1.10",
71
75
  "@adonisjs/require-ts": "^2.0.11",
@@ -97,7 +101,7 @@
97
101
  "strip-ansi": "^6.0.1",
98
102
  "supertest": "^6.2.3",
99
103
  "test-console": "^2.0.0",
100
- "typescript": "^4.6.4",
104
+ "typescript": "^4.7.2",
101
105
  "youch": "^3.2.0",
102
106
  "youch-terminal": "^2.1.4"
103
107
  },
@@ -121,13 +125,13 @@
121
125
  },
122
126
  "dependencies": {
123
127
  "@adonisjs/ace": "^11.3.0",
124
- "@adonisjs/application": "^5.2.4",
125
- "@adonisjs/bodyparser": "^8.1.4",
128
+ "@adonisjs/application": "^5.2.5",
129
+ "@adonisjs/bodyparser": "^8.1.6",
126
130
  "@adonisjs/drive": "^2.2.0",
127
131
  "@adonisjs/encryption": "^4.0.8",
128
132
  "@adonisjs/events": "^7.2.1",
129
133
  "@adonisjs/hash": "^7.1.1",
130
- "@adonisjs/http-server": "^5.9.0",
134
+ "@adonisjs/http-server": "^5.10.0",
131
135
  "@adonisjs/validator": "^12.3.2",
132
136
  "@poppinss/cliui": "^3.0.2",
133
137
  "@poppinss/manager": "^5.0.2",