jigsawpuzzlegame 1.0.13 → 1.0.14

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.
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Stripped of all UI code, providing a clean interface for integration.
6
6
  *
7
- * @version 1.0.8
7
+ * @version 1.0.14
8
8
  *
9
9
  * @example
10
10
  * const puzzle = new JigsawPuzzle('my-container-id', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jigsawpuzzlegame",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "A class for creating a jigsaw puzzle",
5
5
  "files": [
6
6
  "jigsaw-puzzle-game.js",
@@ -21,6 +21,7 @@
21
21
  "type": "ES6",
22
22
  "main": "jigsaw-puzzle-game.js",
23
23
  "scripts": {
24
- "test": "echo \"Error: no test specified\" && exit 1"
24
+ "test": "echo \"Error: no test specified\" && exit 1",
25
+ "version": "node update-version.js && git add -A jigsaw-puzzle-game.js index.html"
25
26
  }
26
27
  }