@lowlighter/markdown 1.2.3 → 2.0.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/deno.jsonc CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "icon": "🖨️",
3
3
  "name": "@libs/markdown",
4
- "version": "1.2.3",
4
+ "version": "2.0.0",
5
5
  "description": "Markdown renderer with optional plugins based on the unified ecosystem.",
6
6
  "keywords": [
7
7
  "markdown",
@@ -71,8 +71,8 @@
71
71
  "rehype-mermaid": "npm:rehype-mermaid@2",
72
72
  "@std/text/slugify": "jsr:@std/text@1/unstable-slugify",
73
73
  "@std/yaml": "jsr:@std/yaml@1",
74
- "@libs/testing": "jsr:@libs/testing@2",
75
- "@libs/typing": "jsr:@libs/typing@2"
74
+ "@libs/testing": "jsr:@libs/testing@3",
75
+ "@libs/typing": "jsr:@libs/typing@3"
76
76
  },
77
77
  "test:permissions": {
78
78
  "read": true,
@@ -84,11 +84,11 @@
84
84
  "tasks": {
85
85
  "build": "npx playwright-core install --with-deps chromium",
86
86
  "test": "deno test --allow-read --allow-env --allow-write --allow-sys --allow-run --no-prompt --coverage --clean --trace-leaks --doc",
87
- "test:deno": "deno task clean:deno && deno fmt --check && deno task test --filter='/^\\[deno\\]/' --quiet && deno coverage --exclude=.js && deno lint",
87
+ "test:deno": "deno task clean:deno && deno fmt --check && deno task test --filter='/DENO/' --quiet && deno coverage --exclude=.js && deno lint",
88
88
  "test:deno-future": "deno task clean:deno && DENO_FUTURE=1 && deno task test:deno",
89
- "test:others": "deno task clean:others && deno fmt --check && deno task test --filter='/^\\[node|bun \\]/' --quiet && deno coverage --exclude=.js && deno lint",
90
- "coverage:html": "deno task test --filter='/^\\[deno\\]/' --quiet && deno coverage --exclude=.js --html && sleep 1",
91
- "dev": "deno fmt && deno task test --filter='/^\\[deno\\]/' && deno coverage --exclude=.js --detailed && deno task lint",
89
+ "test:others": "deno task clean:others && deno fmt --check && deno task test --filter='/NODE|BUN/' --quiet && deno coverage --exclude=.js && deno lint",
90
+ "coverage:html": "deno task test --filter='/DENO/' --quiet && deno coverage --exclude=.js --html && sleep 1",
91
+ "dev": "deno fmt && deno task test --filter='/DENO/' && deno coverage --exclude=.js --detailed && deno task lint",
92
92
  "lint": "deno fmt --check && deno lint && deno doc --lint mod.ts && deno publish --dry-run --quiet --allow-dirty",
93
93
  "clean:deno": "rm -rf node_modules .npmrc deno.lock",
94
94
  "clean:others": "rm -rf node_modules .npmrc deno.lock package.json package-lock.json bun.lockb"