legal-markdown-js 3.4.1 → 3.4.2
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 +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "legal-markdown-js",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"test:integration": "vitest run tests/integration",
|
|
62
62
|
"test:plugins": "vitest run tests/unit/plugins",
|
|
63
63
|
"test:related": "vitest --related",
|
|
64
|
-
"test:staged": "bash -c 'FILES=$(git diff --cached --name-only --diff-filter=ACMR | grep -E \"\\.(ts|js)$\" | head -20); if [ -n \"$FILES\" ]; then vitest run --exclude \"**/e2e/**\" --bail=1; else echo \"No staged TypeScript/JavaScript files to test\"; fi'",
|
|
64
|
+
"test:staged": "bash -c 'FILES=$(git diff --cached --name-only --diff-filter=ACMR | grep -E \"\\.(ts|js)$\" | head -20); if [ -n \"$FILES\" ]; then vitest run --exclude \"**/e2e/**\" --exclude \"**/pdf-generation*.test.ts\" --exclude \"**/pdf-content-verification*.test.ts\" --exclude \"**/no-reprocessing*.test.ts\" --exclude \"**/field-tracking-highlighting*.test.ts\" --bail=1; else echo \"No staged TypeScript/JavaScript files to test\"; fi'",
|
|
65
65
|
"test:unit": "vitest run tests/unit",
|
|
66
66
|
"test:watch": "vitest --watch",
|
|
67
67
|
"test": "vitest",
|
|
@@ -69,7 +69,9 @@
|
|
|
69
69
|
"test:run": "vitest run",
|
|
70
70
|
"test:unit:fast": "vitest run tests/unit --exclude '**/integration/**' --exclude '**/e2e/**'",
|
|
71
71
|
"test:slow": "vitest run tests/integration && E2E_TESTS=1 vitest run tests/e2e",
|
|
72
|
+
"test:pdf": "vitest run tests/integration/pdf-generation.integration.test.ts tests/integration/no-reprocessing.integration.test.ts tests/integration/field-tracking-highlighting.integration.test.ts tests/integration/pdf-content-verification.integration.test.ts",
|
|
72
73
|
"test:pdf-setup": "node scripts/test-pdf-setup.cjs",
|
|
74
|
+
"test:no-pdf": "vitest run --exclude 'tests/integration/pdf-generation.integration.test.ts' --exclude 'tests/integration/no-reprocessing.integration.test.ts' --exclude 'tests/integration/field-tracking-highlighting.integration.test.ts' --exclude 'tests/integration/pdf-content-verification.integration.test.ts' --exclude '**/e2e/**'",
|
|
73
75
|
"typecheck": "tsc --noEmit",
|
|
74
76
|
"validate": "npm run typecheck && npm run lint && npm run test && npm run build",
|
|
75
77
|
"web:serve": "node scripts/web-serve.cjs",
|