@jscad/core 3.0.3-alpha.0 → 3.0.5-alpha.0

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/CHANGELOG.md +10 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.5-alpha.0](/compare/@jscad/core@3.0.4-alpha.0...@jscad/core@3.0.5-alpha.0) (2026-05-16)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **modeling:** various fixes, improvements, and style changes 283087e
11
+
12
+ ## [3.0.4-alpha.0](/compare/@jscad/core@3.0.3-alpha.0...@jscad/core@3.0.4-alpha.0) (2026-04-12)
13
+
14
+ **Note:** Version bump only for package @jscad/core
15
+
6
16
  ## [3.0.3-alpha.0](https://github.com/jscad/OpenJSCAD/compare/@jscad/core@3.0.2-alpha.0...@jscad/core@3.0.3-alpha.0) (2026-01-18)
7
17
 
8
18
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jscad/core",
3
- "version": "3.0.3-alpha.0",
3
+ "version": "3.0.5-alpha.0",
4
4
  "description": "Core functionality for JSCAD Applications",
5
5
  "homepage": "https://openjscad.xyz/",
6
6
  "repository": "https://github.com/jscad/OpenJSCAD.org",
@@ -10,7 +10,7 @@
10
10
  "module": "dist/jscad-core.es.js",
11
11
  "scripts": {
12
12
  "build": "rollup --config",
13
- "coverage": "c8 --all --reporter=html --reporter=text pnpm test",
13
+ "coverage": "c8 --all --reporter=html --reporter=text npm test",
14
14
  "test": "ava './src/**/*.test.js' --verbose --timeout 2m"
15
15
  },
16
16
  "contributors": [
@@ -36,21 +36,21 @@
36
36
  ],
37
37
  "license": "MIT",
38
38
  "dependencies": {
39
- "@jscad/array-utils": "3.0.1-alpha.0",
40
- "@jscad/io": "3.0.3-alpha.0",
41
- "@jscad/io-utils": "3.0.3-alpha.0",
42
- "@jscad/modeling": "3.0.3-alpha.0",
39
+ "@jscad/array-utils": "3.0.3-alpha.0",
40
+ "@jscad/io": "3.0.5-alpha.0",
41
+ "@jscad/io-utils": "3.0.5-alpha.0",
42
+ "@jscad/modeling": "3.0.5-alpha.0",
43
43
  "json5": "2.2.3",
44
44
  "strip-bom": "4.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "ava": "^4.3.3",
48
- "c8": "^8.0.0"
47
+ "ava": "^6.3.0",
48
+ "c8": "^10.1.0"
49
49
  },
50
50
  "collective": {
51
51
  "type": "opencollective",
52
52
  "url": "https://opencollective.com/openjscad",
53
53
  "logo": "https://opencollective.com/openjscad/logo.txt"
54
54
  },
55
- "gitHead": "b0a83db054ec02ccddd9e19e51f86bf30f72a69e"
55
+ "gitHead": "942d9a5eab2f234f2e1c617d5896e0230f353330"
56
56
  }