@danielsimonjr/mathts-plot 0.3.29 → 0.3.30

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.
package/dist/index.d.ts CHANGED
@@ -101,7 +101,6 @@ declare function curve3d(x: unknown, y: unknown, z: unknown, opts?: P3Opts): str
101
101
  /** viridis colormap: t in [0,1] → "#rrggbb". */
102
102
  declare function viridis(t: number): string;
103
103
 
104
- /** @danielsimonjr/mathts-plot headless SVG 2D/3D plotting for MathTS. */
105
- declare const VERSION = "0.2.0";
104
+ declare const VERSION: string;
106
105
 
107
106
  export { type AxisSpec, type Data, type Layer2D, type PlotOptions, VERSION, area, bar, contour, curve3d, errorbar, heatmap, histogram, line, overlay, plot, quiver, scatter, scatter3d, step, surface, toTikZ, viridis };
package/dist/index.js CHANGED
@@ -1117,7 +1117,7 @@ function curve3d(x, y, z, opts = {}) {
1117
1117
  }
1118
1118
 
1119
1119
  // src/index.ts
1120
- var VERSION = "0.2.0";
1120
+ var VERSION = "0.3.30";
1121
1121
  export {
1122
1122
  VERSION,
1123
1123
  area,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielsimonjr/mathts-plot",
3
- "version": "0.3.29",
3
+ "version": "0.3.30",
4
4
  "description": "Headless SVG 2D/3D plotting for MathTS — dependency-light, expression-aware, built on core/functions/expression",
5
5
  "author": "Daniel Simon Jr.",
6
6
  "license": "MIT",
@@ -23,8 +23,8 @@
23
23
  "README.md"
24
24
  ],
25
25
  "scripts": {
26
- "build": "tsup src/index.ts src/render-file.ts --format esm --dts --clean",
27
- "dev": "tsup src/index.ts src/render-file.ts --format esm --dts --watch",
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
28
  "test": "vitest run",
29
29
  "test:watch": "vitest",
30
30
  "test:coverage": "vitest run --coverage",
@@ -34,7 +34,7 @@
34
34
  "clean": "rm -rf dist"
35
35
  },
36
36
  "dependencies": {
37
- "@danielsimonjr/mathts-core": "^0.13.0",
37
+ "@danielsimonjr/mathts-core": "^0.13.1",
38
38
  "@danielsimonjr/mathts-functions": "^0.43.2",
39
39
  "@danielsimonjr/mathts-expression": "^0.6.7"
40
40
  },