@tmlmt/cooklang-parser 1.0.4 → 1.0.6

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 +3 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -34,10 +34,12 @@ const recipeString = `
34
34
  title: Pancakes
35
35
  tags: breakfast, easy
36
36
  ---
37
-
38
37
  Crack the @eggs{3} into a bowl, and add @coarse salt{}.
38
+
39
39
  Melt the @butter{50%g} in a #pan on medium heat.
40
+
40
41
  Cook for ~{15%minutes}.
42
+
41
43
  Serve hot.
42
44
  `;
43
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmlmt/cooklang-parser",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Cooklang parsers and utilities",
5
5
  "author": "Thomas Lamant <tom@tmlmt.com>",
6
6
  "type": "module",
@@ -27,6 +27,7 @@
27
27
  "@vitest/ui": "3.2.4",
28
28
  "eslint": "9.33.0",
29
29
  "eslint-config-prettier": "10.1.8",
30
+ "execa": "9.6.0",
30
31
  "prettier": "3.6.2",
31
32
  "rimraf": "6.0.1",
32
33
  "tsup": "8.5.0",
@@ -53,6 +54,7 @@
53
54
  "predocs:build": "typedoc",
54
55
  "docs:build": "vitepress build docs",
55
56
  "predocs:preview": "typedoc",
56
- "docs:preview": "vitepress preview docs"
57
+ "docs:preview": "vitepress preview docs",
58
+ "release": "node scripts/release.mjs"
57
59
  }
58
60
  }