mdat 1.3.5 → 1.4.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": "mdat",
3
- "version": "1.3.5",
3
+ "version": "1.4.0",
4
4
  "description": "CLI tool and TypeScript library implementing the Markdown Autophagic Template (MDAT) system. MDAT lets you use comments as dynamic content templates in Markdown files, making it easy to generate and update readme boilerplate.",
5
5
  "keywords": [
6
6
  "mdat",
@@ -25,6 +25,7 @@
25
25
  "email": "eric@ericmika.com",
26
26
  "url": "https://ericmika.com"
27
27
  },
28
+ "sideEffects": false,
28
29
  "type": "module",
29
30
  "exports": {
30
31
  ".": {
@@ -43,7 +44,7 @@
43
44
  ],
44
45
  "dependencies": {
45
46
  "@clack/prompts": "^1.0.1",
46
- "cosmiconfig": "^9.0.0",
47
+ "cosmiconfig": "^9.0.1",
47
48
  "cosmiconfig-typescript-loader": "^6.2.0",
48
49
  "find-up": "^8.0.0",
49
50
  "globby": "^16.1.1",
@@ -58,7 +59,7 @@
58
59
  "read-pkg": "^10.1.0",
59
60
  "remark": "^15.0.1",
60
61
  "remark-gfm": "^4.0.1",
61
- "remark-mdat": "^1.2.3",
62
+ "remark-mdat": "^1.2.4",
62
63
  "to-vfile": "^8.0.0",
63
64
  "type-fest": "^5.4.4",
64
65
  "unified-engine": "^11.2.2",
@@ -69,18 +70,18 @@
69
70
  },
70
71
  "devDependencies": {
71
72
  "@arethetypeswrong/core": "^0.18.2",
72
- "@kitschpatrol/shared-config": "^6.0.0",
73
+ "@kitschpatrol/shared-config": "^6.0.2",
73
74
  "@types/mdast": "^4.0.4",
74
- "@types/node": "~20.19.33",
75
+ "@types/node": "~20.19.35",
75
76
  "@types/unist": "^3.0.3",
76
77
  "@types/yargs": "^17.0.35",
77
78
  "bumpp": "^10.4.1",
78
79
  "execa": "^9.6.1",
79
- "mdat-plugin-cli-help": "^1.0.6",
80
- "mdat-plugin-example": "^1.0.4",
81
- "mdat-plugin-tldraw": "^1.0.6",
80
+ "mdat-plugin-cli-help": "^1.0.7",
81
+ "mdat-plugin-example": "^1.0.5",
82
+ "mdat-plugin-tldraw": "^1.0.7",
82
83
  "nanoid": "^5.1.6",
83
- "publint": "^0.3.17",
84
+ "publint": "^0.3.18",
84
85
  "tsdown": "^0.20.3",
85
86
  "typescript": "~5.9.3",
86
87
  "unplugin-raw": "^0.6.4",
@@ -101,6 +102,6 @@
101
102
  "fix": "ksc fix",
102
103
  "lint": "ksc lint",
103
104
  "release": "bumpp --commit 'Release: %s' && pnpm run build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish",
104
- "test": "vitest --no-file-parallelism"
105
+ "test": "vitest run --no-file-parallelism"
105
106
  }
106
107
  }
package/readme.md CHANGED
@@ -917,7 +917,7 @@ This has been done several times before:
917
917
  - lillallol's [md-in-place](https://www.npmjs.com/package/md-in-place)
918
918
 
919
919
  - [AutoMD](https://automd.unjs.io/)\
920
- Extremely similar functionality to mdat, with the project initiated around the same time I was initially writing mdat. I didn't find the project until a few years later. Ships in the night.
920
+ Extremely similar functionality to mdat. The project was initiated around the same time as MDAT, but I didn't find the project until a few years later. Ships in the night.
921
921
 
922
922
  ### Implementation notes
923
923