@hpcc-js/markdown-it-plugins 1.5.15 → 1.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/markdown-it-plugins",
3
- "version": "1.5.15",
3
+ "version": "1.6.0",
4
4
  "description": "markdown-it plugins",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.cjs",
@@ -36,7 +36,7 @@
36
36
  "bundle-serve": "vite --port 5513",
37
37
  "bundle2": "node esbuild.js",
38
38
  "bundle2-watch": "npm run bundle2 -- --development --watch",
39
- "gen-types": "tsc --project tsconfig.json",
39
+ "gen-types": "tsgo --project tsconfig.json",
40
40
  "gen-types-watch": "npm run gen-types -- --watch",
41
41
  "build": "npm-run-all --parallel gen-types bundle --serial bundle2",
42
42
  "watch": "run-p gen-types-watch bundle-watch",
@@ -54,7 +54,7 @@
54
54
  "update-major": "npx --yes npm-check-updates -u"
55
55
  },
56
56
  "dependencies": {
57
- "@hpcc-js/observablehq-compiler": "^3.7.13",
57
+ "@hpcc-js/observablehq-compiler": "^3.8.0",
58
58
  "@observablehq/inspector": "5.0.1",
59
59
  "@observablehq/runtime": "6.0.0",
60
60
  "@observablehq/stdlib": "5.8.8",
@@ -66,7 +66,7 @@
66
66
  "shiki": "2.5.0"
67
67
  },
68
68
  "devDependencies": {
69
- "@hpcc-js/esbuild-plugins": "^1.8.11",
69
+ "@hpcc-js/esbuild-plugins": "^1.9.0",
70
70
  "d3-dsv": "3.0.1",
71
71
  "d3-fetch": "3.0.1",
72
72
  "dotenv": "17.4.2",
@@ -83,5 +83,5 @@
83
83
  "url": "https://github.com/hpcc-systems/Visualization/issues"
84
84
  },
85
85
  "homepage": "https://github.com/hpcc-systems/Visualization/tree/main/packages/markdown-it-plugins",
86
- "gitHead": "1c0e8862859769465f70f384183f1399191d76e6"
86
+ "gitHead": "b762adfab7d03d06ea8cfab59059456100ea757c"
87
87
  }
package/types/loader.d.ts CHANGED
@@ -8,8 +8,8 @@ export declare class DataFile {
8
8
  text(encoding?: BufferEncoding): Promise<string>;
9
9
  json(): Promise<any>;
10
10
  dsv({ delimiter, array, typed }?: {
11
- delimiter?: string | undefined;
12
11
  array?: boolean | undefined;
12
+ delimiter?: string | undefined;
13
13
  typed?: boolean | undefined;
14
14
  }): Promise<any>;
15
15
  csv(options?: any): Promise<any>;