@danielsimonjr/mathts-workbook 0.3.3 → 0.3.4
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/{chunk-TMVFG3I3.js → chunk-CXMKGWBF.js} +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/dist/cli.js
CHANGED
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
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielsimonjr/mathts-workbook",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
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
|
|
26
|
-
"dev": "tsup
|
|
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
|
|
34
|
+
"build:prod": "tsup --minify --treeshake"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@danielsimonjr/mathts-core": "^0.13.
|
|
37
|
+
"@danielsimonjr/mathts-core": "^0.13.1",
|
|
38
38
|
"@danielsimonjr/mathts-expression": "^0.6.7",
|
|
39
39
|
"@danielsimonjr/mathts-functions": "^0.43.2",
|
|
40
|
-
"@danielsimonjr/mathts-plot": "^0.3.
|
|
40
|
+
"@danielsimonjr/mathts-plot": "^0.3.30",
|
|
41
41
|
"yaml": "^2.3.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|