vec3 0.1.9 → 0.1.10

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 (2) hide show
  1. package/HISTORY.md +3 -0
  2. package/package.json +2 -1
package/HISTORY.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.1.10
2
+ * [add new types export (#49)](https://github.com/PrismarineJS/node-vec3/commit/9a3c259a361de7b6053c5e60ac70ba8ce658aeb0) (thanks @zerozeynep)
3
+
1
4
  ## 0.1.9
2
5
  * [Add methods, fix .equals (#46)](https://github.com/PrismarineJS/node-vec3/commit/c6b94c4289cfba5fc460bed99d112cec85fe1cf3) (thanks @szdytom)
3
6
  * [Add command gh workflow allowing to use release command in comments (#45)](https://github.com/PrismarineJS/node-vec3/commit/8675f8ecf6065278c0d1f889a585a5febf446cc0) (thanks @rom1504)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vec3",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "3d vector math with good unit tests",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -16,6 +16,7 @@
16
16
  "point"
17
17
  ],
18
18
  "exports": {
19
+ "types": "./index.d.ts",
19
20
  "require": "./index.js",
20
21
  "import": "./wrapper.mjs"
21
22
  },