@strapi/plugin-color-picker 4.9.0 → 4.10.0-beta.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/jest.config.front.js +6 -1
- package/jest.config.js +10 -0
- package/package.json +3 -10
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -14
package/jest.config.front.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
const baseConfig = require('../../../jest.base-config.front');
|
|
4
|
+
const pkg = require('./package.json');
|
|
5
|
+
|
|
3
6
|
module.exports = {
|
|
4
|
-
|
|
7
|
+
...baseConfig,
|
|
8
|
+
displayName: (pkg.strapi && pkg.strapi.name) || pkg.name,
|
|
9
|
+
roots: [__dirname],
|
|
5
10
|
};
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/plugin-color-picker",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.10.0-beta.0",
|
|
4
4
|
"description": "Strapi maintained Custom Fields",
|
|
5
5
|
"strapi": {
|
|
6
6
|
"name": "color-picker",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@strapi/design-system": "1.6.6",
|
|
13
|
-
"@strapi/helper-plugin": "4.
|
|
13
|
+
"@strapi/helper-plugin": "4.10.0-beta.0",
|
|
14
14
|
"@strapi/icons": "1.6.6",
|
|
15
15
|
"prop-types": "^15.7.2",
|
|
16
16
|
"react-colorful": "5.6.1",
|
|
@@ -30,13 +30,6 @@
|
|
|
30
30
|
"react-router-dom": "5.3.4",
|
|
31
31
|
"styled-components": "5.3.3"
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"test:front": "cross-env IS_EE=true jest --config ./jest.config.front.js",
|
|
35
|
-
"test:front:watch": "cross-env IS_EE=true jest --config ./jest.config.front.js --watchAll",
|
|
36
|
-
"test:front:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js",
|
|
37
|
-
"test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll",
|
|
38
|
-
"lint": "eslint ."
|
|
39
|
-
},
|
|
40
33
|
"repository": {
|
|
41
34
|
"type": "git",
|
|
42
35
|
"url": "https://github.com/strapi/strapi.git",
|
|
@@ -59,5 +52,5 @@
|
|
|
59
52
|
"node": ">=14.19.1 <=18.x.x",
|
|
60
53
|
"npm": ">=6.0.0"
|
|
61
54
|
},
|
|
62
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "1519ef0e56d27b738f24fc88223797651ad47aaf"
|
|
63
56
|
}
|
package/.eslintignore
DELETED