docmedown 0.1.3 → 0.1.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.
- package/dist/cli.js +2 -2
- package/dist/docmedown.cjs +58 -58
- package/dist/docmedown.iife.js +280 -280
- package/dist/docmedown.mjs +4541 -4489
- package/dist/types/runtime/markdown/mermaid.d.ts +19 -0
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -31,7 +31,7 @@ var import_commander = require("commander");
|
|
|
31
31
|
// package.json
|
|
32
32
|
var package_default = {
|
|
33
33
|
name: "docmedown",
|
|
34
|
-
version: "0.1.
|
|
34
|
+
version: "0.1.5",
|
|
35
35
|
description: "The simplest MarkDown documenter yet. CLI & Web Script React SPA documentation engine.",
|
|
36
36
|
main: "./dist/docmedown.cjs",
|
|
37
37
|
module: "./dist/docmedown.mjs",
|
|
@@ -77,7 +77,7 @@ var package_default = {
|
|
|
77
77
|
"build:docs:watch": "node ./bin/docmedown.js build ./docs --watch",
|
|
78
78
|
"build:offline": "node ./bin/docmedown.js build ./docs",
|
|
79
79
|
"config:docs": "node ./bin/docmedown.js config ./docs/docs.json",
|
|
80
|
-
test: "npx tsx --test tests/parser.test.ts tests/scanner.test.ts tests/theme-schema.test.ts tests/runtime-integration.test.ts tests/package-smoke.test.ts tests/hosting.test.ts",
|
|
80
|
+
test: "npx tsx --test tests/parser.test.ts tests/scanner.test.ts tests/theme-schema.test.ts tests/runtime-integration.test.ts tests/package-smoke.test.ts tests/hosting.test.ts tests/deploy.test.ts",
|
|
81
81
|
"test:artifacts": "npx tsx --test tests/offline-artifact.test.ts",
|
|
82
82
|
"test:release": "npm run typecheck && npm run lint && npm run test && npm run build && npm run build:docs && npm run test:artifacts && npm pack --dry-run",
|
|
83
83
|
deploy: "node ./scripts/deploy.mjs",
|