kokopu-react 1.5.4 → 1.5.5
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 +5 -0
- package/package.json +13 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
ChangeLog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.5.5 (May 18, 2022)
|
|
5
|
+
--------------------
|
|
6
|
+
* Upgrade dependencies.
|
|
7
|
+
* Remove dependency with security issue.
|
|
8
|
+
|
|
4
9
|
1.5.4 (May 1, 2022)
|
|
5
10
|
-------------------
|
|
6
11
|
* Provide method `Chessboard#size(..)` to retrieve the width/height of a `Chessboard` component instance.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kokopu-react",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
4
4
|
"description": "A React-based library to create and display chessboard and chess-related components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chess",
|
|
@@ -29,41 +29,40 @@
|
|
|
29
29
|
".nycrc.yml"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"htmlparser2": "^
|
|
33
|
-
"kokopu": "^2.
|
|
32
|
+
"htmlparser2": "^8.0.1",
|
|
33
|
+
"kokopu": "^2.8.0",
|
|
34
34
|
"prop-types": "^15.8.1",
|
|
35
35
|
"react": "^17.0.2",
|
|
36
36
|
"react-draggable": "^4.4.5",
|
|
37
37
|
"react-motion": "^0.5.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@babel/cli": "^7.17.
|
|
41
|
-
"@babel/core": "^7.17.
|
|
42
|
-
"@babel/preset-env": "^7.
|
|
43
|
-
"@babel/preset-react": "^7.
|
|
40
|
+
"@babel/cli": "^7.17.10",
|
|
41
|
+
"@babel/core": "^7.17.12",
|
|
42
|
+
"@babel/preset-env": "^7.17.12",
|
|
43
|
+
"@babel/preset-react": "^7.17.12",
|
|
44
44
|
"@emotion/react": "^11.9.0",
|
|
45
45
|
"@emotion/styled": "^11.8.1",
|
|
46
|
-
"@mui/material": "^5.
|
|
46
|
+
"@mui/material": "^5.8.0",
|
|
47
47
|
"babel-loader": "^8.2.5",
|
|
48
48
|
"babel-plugin-istanbul": "^6.1.1",
|
|
49
|
-
"copy-webpack-plugin": "^
|
|
49
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
50
50
|
"coveralls": "^3.1.1",
|
|
51
51
|
"css-loader": "^6.7.1",
|
|
52
|
-
"eslint": "^8.
|
|
52
|
+
"eslint": "^8.15.0",
|
|
53
53
|
"eslint-plugin-react": "^7.29.4",
|
|
54
54
|
"html-webpack-plugin": "^5.5.0",
|
|
55
55
|
"img-diff-js": "^0.5.2",
|
|
56
|
-
"mocha": "^
|
|
56
|
+
"mocha": "^10.0.0",
|
|
57
57
|
"null-loader": "^4.0.1",
|
|
58
58
|
"nyc": "^15.1.0",
|
|
59
|
-
"prompt": "^1.3.0",
|
|
60
59
|
"react-dom": "^17.0.2",
|
|
61
60
|
"react-styleguidist": "^11.2.0",
|
|
62
61
|
"selenium-webdriver": "^4.1.2",
|
|
63
|
-
"ssh2-sftp-client": "^8.
|
|
62
|
+
"ssh2-sftp-client": "^8.1.0",
|
|
64
63
|
"style-loader": "^3.3.1",
|
|
65
64
|
"unit.js": "^2.1.1",
|
|
66
|
-
"webpack": "^5.72.
|
|
65
|
+
"webpack": "^5.72.1",
|
|
67
66
|
"webpack-cli": "^4.9.2"
|
|
68
67
|
},
|
|
69
68
|
"scripts": {
|