@hpcc-js/markdown-it-plugins 1.3.2 → 1.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/ecl-lang.cjs +2 -0
- package/dist/ecl-lang.cjs.map +7 -0
- package/dist/loader.node.cjs +1968 -0
- package/dist/loader.node.cjs.map +7 -0
- package/package.json +12 -10
- package/src/__package__.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/markdown-it-plugins",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "markdown-it plugins",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"bundle2-watch": "npm run bundle2 -- --development --watch",
|
|
38
38
|
"gen-types": "tsc --project tsconfig.json",
|
|
39
39
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
40
|
-
"build": "run-
|
|
40
|
+
"build": "npm-run-all --parallel gen-types bundle --serial bundle2",
|
|
41
41
|
"dev-docs": "vitepress dev",
|
|
42
42
|
"build-docs": "vitepress build",
|
|
43
43
|
"preview-docs": "vitepress preview",
|
|
@@ -52,19 +52,21 @@
|
|
|
52
52
|
"update-major": "npx --yes npm-check-updates -u"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@hpcc-js/observablehq-compiler": "^3.3.
|
|
55
|
+
"@hpcc-js/observablehq-compiler": "^3.3.3",
|
|
56
56
|
"@observablehq/framework": "1.13.2",
|
|
57
|
-
"@observablehq/runtime": "5.9.9"
|
|
57
|
+
"@observablehq/runtime": "5.9.9",
|
|
58
|
+
"@types/markdown-it": "14.1.2"
|
|
58
59
|
},
|
|
59
|
-
"
|
|
60
|
-
"@hpcc-js/esbuild-plugins": "^1.4.2",
|
|
61
|
-
"@types/markdown-it": "14.1.2",
|
|
60
|
+
"peerDependencies": {
|
|
62
61
|
"apache-arrow": "19.0.1",
|
|
62
|
+
"markdown-it": "14.1.0",
|
|
63
|
+
"shiki": "2.5.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@hpcc-js/esbuild-plugins": "^1.4.3",
|
|
63
67
|
"d3-dsv": "3.0.1",
|
|
64
68
|
"d3-fetch": "3.0.1",
|
|
65
69
|
"dotenv": "16.4.7",
|
|
66
|
-
"markdown-it": "14.1.0",
|
|
67
|
-
"shiki": "2.5.0",
|
|
68
70
|
"tsx": "4.19.3"
|
|
69
71
|
},
|
|
70
72
|
"repository": {
|
|
@@ -78,5 +80,5 @@
|
|
|
78
80
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
79
81
|
},
|
|
80
82
|
"homepage": "https://github.com/hpcc-systems/Visualization/tree/trunk/packages/markdonw-it-plugins",
|
|
81
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "8afa398a6246f7f913bc2cb88402b776d65deb00"
|
|
82
84
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/markdown-it-plugins";
|
|
2
|
-
export const PKG_VERSION = "1.3.
|
|
3
|
-
export const BUILD_VERSION = "3.
|
|
2
|
+
export const PKG_VERSION = "1.3.4";
|
|
3
|
+
export const BUILD_VERSION = "3.8.0";
|