@strapi/utils 4.5.0-beta.0 → 4.5.0
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/lib/import-default.js +10 -0
- package/lib/index.js +2 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -39,6 +39,7 @@ const sanitize = require('./sanitize');
|
|
|
39
39
|
const traverseEntity = require('./traverse-entity');
|
|
40
40
|
const pipeAsync = require('./pipe-async');
|
|
41
41
|
const convertQueryParams = require('./convert-query-params');
|
|
42
|
+
const importDefault = require('./import-default');
|
|
42
43
|
|
|
43
44
|
module.exports = {
|
|
44
45
|
yup,
|
|
@@ -81,4 +82,5 @@ module.exports = {
|
|
|
81
82
|
validateYupSchema,
|
|
82
83
|
validateYupSchemaSync,
|
|
83
84
|
convertQueryParams,
|
|
85
|
+
importDefault,
|
|
84
86
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/utils",
|
|
3
|
-
"version": "4.5.0
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "Shared utilities for the Strapi packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"node": ">=14.19.1 <=18.x.x",
|
|
46
46
|
"npm": ">=6.0.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "33debd57010667a3fc5dfa343a673206cfb956e1"
|
|
49
49
|
}
|