@frontastic/common 2.40.1 → 2.41.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/CHANGELOG.md +12 -0
- package/composer.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
|
|
2
|
+
## Version 2.41.1 (2023-02-17)
|
|
3
|
+
|
|
4
|
+
** New Features and Improvements **
|
|
5
|
+
|
|
6
|
+
- Some JavaScript dependency updates
|
|
7
|
+
|
|
8
|
+
## Version 2.41.0 (2023-02-15)
|
|
9
|
+
|
|
10
|
+
** New Features and Improvements **
|
|
11
|
+
|
|
12
|
+
- Store build version info on CI extension upload
|
|
13
|
+
|
|
2
14
|
## Version 2.40.1 (2023-02-08)
|
|
3
15
|
|
|
4
16
|
** Bug fixes **
|
package/composer.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontastic/common",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.41.1",
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@babel/core": "7.5.4",
|
|
6
6
|
"@babel/plugin-proposal-class-properties": "^7.5.0",
|
|
7
7
|
"@babel/preset-env": "^7.5.4",
|
|
8
8
|
"@babel/preset-react": "^7.0.0",
|
|
9
9
|
"babel-eslint": "10.0.2",
|
|
10
|
-
"babel-jest": "
|
|
10
|
+
"babel-jest": "26.6.3",
|
|
11
11
|
"babel-loader": "8.0.6",
|
|
12
12
|
"babel-preset-env": "^1.7.0",
|
|
13
13
|
"cloudinary-core": "^2.6.3",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
23
23
|
"eslint-plugin-node": "^9.1.0",
|
|
24
24
|
"eslint-plugin-promise": "^4.2.1",
|
|
25
|
-
"eslint-plugin-react": "7.
|
|
25
|
+
"eslint-plugin-react": "^7.19.0",
|
|
26
26
|
"eslint-plugin-react-hooks": "^1.6.1",
|
|
27
27
|
"eslint-plugin-standard": "^4.0.0",
|
|
28
|
-
"jest": "
|
|
28
|
+
"jest": "26.6.3",
|
|
29
29
|
"mime": "^1.4.1",
|
|
30
30
|
"uuid": "^3.3.2",
|
|
31
31
|
"webpack": "4.41.2",
|
|
32
|
-
"webpack-
|
|
32
|
+
"webpack-cli": "^3.3.10",
|
|
33
33
|
"whatwg-fetch": "3.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {},
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "webpack",
|
|
40
40
|
"test": "node bin/test.js --env=jsdom",
|
|
41
|
-
"check": "
|
|
42
|
-
"fix": "
|
|
41
|
+
"check": "eslint --ext .js --ext .jsx -c ../../integration/eslint.config.json --ignore-pattern frontastic-common.js src/js/ test/js/",
|
|
42
|
+
"fix": "eslint --fix --ext .js --ext .jsx -c ../../integration/eslint.config.json --ignore-pattern frontastic-common.js src/js/ test/js/"
|
|
43
43
|
},
|
|
44
44
|
"jest": {
|
|
45
45
|
"collectCoverageFrom": [
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"testEnvironment": "node",
|
|
55
55
|
"testURL": "http://localhost",
|
|
56
56
|
"transform": {
|
|
57
|
-
"^.+\\.(js|jsx)$": "<rootDir
|
|
57
|
+
"^.+\\.(js|jsx)$": "<rootDir>/../../../node_modules/babel-jest",
|
|
58
58
|
"^.+\\.css$": "<rootDir>/bin/config/jest/cssTransform.js",
|
|
59
59
|
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/bin/config/jest/fileTransform.js"
|
|
60
60
|
},
|