@adonisjs/core 5.8.0 → 5.8.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/config.d.ts +2 -0
- package/build/config.js +15 -0
- package/package.json +3 -1
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.1",
|
|
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
|
],
|