@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.
- package/build/adonis-typings/test-utils.d.ts +1 -0
- package/build/config.d.ts +2 -0
- package/build/config.js +15 -0
- package/build/templates/config/drive.txt +1 -1
- package/build/templates/config/hash.txt +1 -1
- package/build/templates/contracts/drive.txt +1 -1
- package/build/templates/contracts/hash.txt +1 -1
- package/package.json +9 -5
package/build/config.js
ADDED
|
@@ -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; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs/core",
|
|
3
|
-
"version": "5.8.
|
|
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.
|
|
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.
|
|
125
|
-
"@adonisjs/bodyparser": "^8.1.
|
|
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.
|
|
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",
|