@danielsimonjr/mathts-workbook 0.3.3 → 0.3.5

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.
@@ -321,7 +321,7 @@ var Session = class {
321
321
 
322
322
  // src/contract.ts
323
323
  var SCHEMA_VERSION = { major: 1, minor: 0 };
324
- var VERSION = "0.1.0";
324
+ var VERSION = "0.3.5";
325
325
  var COMMAND_NAMES = [
326
326
  "run",
327
327
  "describe",
package/dist/cli.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  runWorkbookWithTimeout,
16
16
  setMetadata,
17
17
  writeFileAtomic
18
- } from "./chunk-TMVFG3I3.js";
18
+ } from "./chunk-M4KCBNNV.js";
19
19
  import {
20
20
  buildDependencyGraph,
21
21
  createExecutor,
package/dist/index.d.ts CHANGED
@@ -325,8 +325,7 @@ declare const SCHEMA_VERSION: {
325
325
  readonly major: 1;
326
326
  readonly minor: 0;
327
327
  };
328
- /** Package/engine version reported by `--version`, `capabilities`, and serve. */
329
- declare const VERSION = "0.1.0";
328
+ declare const VERSION: string;
330
329
 
331
330
  /**
332
331
  * In-memory editing/execution session for a single workbook — the stateful
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  renameCell,
12
12
  runWorkbookWithTimeout,
13
13
  setMetadata
14
- } from "./chunk-TMVFG3I3.js";
14
+ } from "./chunk-M4KCBNNV.js";
15
15
  import {
16
16
  WorkbookExecutor,
17
17
  buildDependencyGraph,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielsimonjr/mathts-workbook",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Scientific workbook runtime for MathTS (.mtsw format)",
5
5
  "author": "Daniel Simon Jr.",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  "README.md"
23
23
  ],
24
24
  "scripts": {
25
- "build": "tsup src/index.ts src/cli.ts src/run-worker.ts --format esm --dts --clean",
26
- "dev": "tsup src/index.ts src/cli.ts src/run-worker.ts --format esm --dts --watch",
25
+ "build": "tsup",
26
+ "dev": "tsup --watch",
27
27
  "test": "vitest run",
28
28
  "test:watch": "vitest",
29
29
  "test:coverage": "vitest run --coverage",
@@ -31,13 +31,13 @@
31
31
  "lint": "eslint src --ext .ts",
32
32
  "lint:fix": "eslint src --ext .ts --fix",
33
33
  "clean": "rm -rf dist",
34
- "build:prod": "tsup src/index.ts src/cli.ts src/run-worker.ts --format esm --dts --clean --minify --treeshake"
34
+ "build:prod": "tsup --minify --treeshake"
35
35
  },
36
36
  "dependencies": {
37
- "@danielsimonjr/mathts-core": "^0.13.0",
37
+ "@danielsimonjr/mathts-core": "^0.13.1",
38
38
  "@danielsimonjr/mathts-expression": "^0.6.7",
39
- "@danielsimonjr/mathts-functions": "^0.43.2",
40
- "@danielsimonjr/mathts-plot": "^0.3.29",
39
+ "@danielsimonjr/mathts-functions": "^0.44.0",
40
+ "@danielsimonjr/mathts-plot": "^0.3.31",
41
41
  "yaml": "^2.3.0"
42
42
  },
43
43
  "devDependencies": {