@alepot55/chessboardjs 2.1.5 → 2.1.7

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.
@@ -22,7 +22,6 @@ class Move {
22
22
 
23
23
  check() {
24
24
  if (this.piece === null) {
25
- console.log(this);
26
25
  throw new Error("Invalid move: piece is null");
27
26
  }
28
27
  if (!(this.piece instanceof Piece)) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "chess.js": "^1.0.0"
4
4
  },
5
5
  "name": "@alepot55/chessboardjs",
6
- "version": "2.1.5",
6
+ "version": "2.1.7",
7
7
  "main": "chessboard.js",
8
8
  "type": "module",
9
9
  "scripts": {