hongdown 0.1.0-dev.11 → 0.1.0-dev.13

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.
Files changed (2) hide show
  1. package/README.md +37 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -269,6 +269,43 @@ println!("{}", output);
269
269
  ~~~~
270
270
 
271
271
 
272
+ Development
273
+ -----------
274
+
275
+ This project uses [mise] for task management.
276
+
277
+ [mise]: https://mise.jdx.dev/
278
+
279
+ ### Initial setup
280
+
281
+ After cloning the repository, set up the Git pre-commit hook to automatically
282
+ run quality checks before each commit:
283
+
284
+ ~~~~ bash
285
+ mise generate git-pre-commit --task=check --write
286
+ ~~~~
287
+
288
+ ### Quality checks
289
+
290
+ The following tasks are available:
291
+
292
+ ~~~~ bash
293
+ # Run all quality checks
294
+ mise run check
295
+
296
+ # Individual checks
297
+ mise run check:clippy # Run clippy linter
298
+ mise run check:fmt # Check code formatting
299
+ mise run check:type # Run Rust type checking
300
+ mise run check:markdown # Check Markdown formatting
301
+ ~~~~
302
+
303
+ See *[AGENTS.md]* for detailed development guidelines including TDD
304
+ practices, code style conventions, and commit message guidelines.
305
+
306
+ [AGENTS.md]: ./AGENTS.md
307
+
308
+
272
309
  Etymology
273
310
  ---------
274
311
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hongdown",
3
- "version": "0.1.0-dev.11+be401b59",
3
+ "version": "0.1.0-dev.13+6b06d880",
4
4
  "type": "module",
5
5
  "description": "A Markdown formatter that enforces Hong Minhee's Markdown style conventions",
6
6
  "license": "GPL-3.0-or-later",
@@ -27,11 +27,11 @@
27
27
  "node": ">=18"
28
28
  },
29
29
  "optionalDependencies": {
30
- "@hongdown/darwin-arm64": "0.1.0-dev.11+be401b59",
31
- "@hongdown/darwin-x64": "0.1.0-dev.11+be401b59",
32
- "@hongdown/linux-arm64": "0.1.0-dev.11+be401b59",
33
- "@hongdown/linux-x64": "0.1.0-dev.11+be401b59",
34
- "@hongdown/win32-arm64": "0.1.0-dev.11+be401b59",
35
- "@hongdown/win32-x64": "0.1.0-dev.11+be401b59"
30
+ "@hongdown/darwin-arm64": "0.1.0-dev.13+6b06d880",
31
+ "@hongdown/darwin-x64": "0.1.0-dev.13+6b06d880",
32
+ "@hongdown/linux-arm64": "0.1.0-dev.13+6b06d880",
33
+ "@hongdown/linux-x64": "0.1.0-dev.13+6b06d880",
34
+ "@hongdown/win32-arm64": "0.1.0-dev.13+6b06d880",
35
+ "@hongdown/win32-x64": "0.1.0-dev.13+6b06d880"
36
36
  }
37
37
  }