kokopu-react 1.10.0 → 1.10.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.
Files changed (3) hide show
  1. package/.nycrc.yml +1 -0
  2. package/README.md +1 -1
  3. package/package.json +7 -9
package/.nycrc.yml CHANGED
@@ -4,6 +4,7 @@ report-dir: ./build/coverage
4
4
  reporter:
5
5
  - text
6
6
  - html
7
+ - lcovonly
7
8
 
8
9
  check-coverage: true
9
10
 
package/README.md CHANGED
@@ -10,7 +10,7 @@ and [PGN](https://en.wikipedia.org/wiki/Portable_Game_Notation) formats...).
10
10
 
11
11
  https://www.npmjs.com/package/kokopu-react
12
12
 
13
- [![Build Status](https://app.travis-ci.com/yo35/kokopu-react.svg?branch=master)](https://app.travis-ci.com/yo35/kokopu-react)
13
+ [![Build Status](https://github.com/yo35/kokopu-react/actions/workflows/main.yml/badge.svg)](https://github.com/yo35/kokopu-react/actions/workflows/main.yml)
14
14
  [![Coverage Status](https://coveralls.io/repos/github/yo35/kokopu-react/badge.svg?branch=master)](https://coveralls.io/github/yo35/kokopu-react?branch=master)
15
15
 
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kokopu-react",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "A React-based library to create and display chessboard and chess-related components.",
5
5
  "keywords": [
6
6
  "chess",
@@ -40,22 +40,21 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@babel/cli": "^7.20.7",
43
- "@babel/core": "^7.20.7",
43
+ "@babel/core": "^7.20.12",
44
44
  "@babel/preset-env": "^7.20.2",
45
45
  "@babel/preset-react": "^7.18.6",
46
46
  "@emotion/react": "^11.10.5",
47
47
  "@emotion/styled": "^11.10.5",
48
- "@mui/material": "^5.11.3",
49
- "babel-loader": "^9.1.0",
48
+ "@mui/material": "^5.11.7",
49
+ "babel-loader": "^9.1.2",
50
50
  "babel-plugin-istanbul": "^6.1.1",
51
51
  "copy-webpack-plugin": "^11.0.0",
52
- "coveralls": "^3.1.1",
53
52
  "css-loader": "^6.7.3",
54
- "eslint": "^8.31.0",
55
- "eslint-plugin-react": "^7.31.11",
53
+ "eslint": "^8.33.0",
54
+ "eslint-plugin-react": "^7.32.2",
56
55
  "html-webpack-plugin": "^5.5.0",
57
56
  "img-diff-js": "^0.5.2",
58
- "kokopu": "^4.0.1",
57
+ "kokopu": "^4.2.1",
59
58
  "mocha": "^10.2.0",
60
59
  "null-loader": "^4.0.1",
61
60
  "nyc": "^15.1.0",
@@ -74,7 +73,6 @@
74
73
  "preunit": "webpack --config scripts/test-headless.webpack.config.js && webpack --config scripts/test-graphic.webpack.config.js && node scripts/clean-graphic-output.js",
75
74
  "unit": "nyc mocha --bail --sort",
76
75
  "test": "npm run lint && npm run unit",
77
- "publish_coverage": "nyc report --reporter=text-lcov | coveralls",
78
76
  "test_env:start": "docker-compose -p kokopu-react-test-env -f scripts/docker-compose.yml up -d",
79
77
  "test_env:stop": "docker-compose -p kokopu-react-test-env -f scripts/docker-compose.yml down",
80
78
  "build": "make -f scripts/build.mk",