@herb-tools/core 0.3.0 → 0.3.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.1 (2025-06-23)
2
+
3
+ This was a version bump only for @herb-tools/core to align it with other projects, there were no code changes.
4
+
1
5
  ## 0.3.0 (2025-06-21)
2
6
 
3
7
  This was a version bump only for @herb-tools/core to align it with other projects, there were no code changes.
package/README.md CHANGED
@@ -1,4 +1,10 @@
1
- # `@herb-tools/core`
1
+ ## Herb Core
2
+
3
+ ##### Package: [`@herb-tools/core`](https://www.npmjs.com/package/@herb-tools/core)
4
+
5
+ ---
6
+
7
+ Core module exporting shared interfaces, AST node definitions, and common utilities for Herb (no direct parsing functionality).
2
8
 
3
9
  ## Building
4
10
 
@@ -726,7 +726,7 @@ function fromSerializedError(error) {
726
726
  }
727
727
 
728
728
  var name = "@herb-tools/core";
729
- var version = "0.3.0";
729
+ var version = "0.3.1";
730
730
  var packageJSON = {
731
731
  name: name,
732
732
  version: version};
@@ -728,7 +728,7 @@ function fromSerializedError(error) {
728
728
  }
729
729
 
730
730
  var name = "@herb-tools/core";
731
- var version = "0.3.0";
731
+ var version = "0.3.1";
732
732
  var packageJSON = {
733
733
  name: name,
734
734
  version: version};
@@ -726,7 +726,7 @@ function fromSerializedError(error) {
726
726
  }
727
727
 
728
728
  var name = "@herb-tools/core";
729
- var version = "0.3.0";
729
+ var version = "0.3.1";
730
730
  var packageJSON = {
731
731
  name: name,
732
732
  version: version};
@@ -732,7 +732,7 @@
732
732
  }
733
733
 
734
734
  var name = "@herb-tools/core";
735
- var version = "0.3.0";
735
+ var version = "0.3.1";
736
736
  var packageJSON = {
737
737
  name: name,
738
738
  version: version};
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@herb-tools/core",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
+ "description": "Core module exporting shared interfaces, AST node definitions, and common utilities for Herb",
4
5
  "type": "module",
5
6
  "license": "MIT",
6
7
  "homepage": "https://herb-tools.dev",
package/src/nodes.ts CHANGED
@@ -90,7 +90,7 @@ export abstract class Node implements BaseNodeProps {
90
90
  abstract treeInspect(indent?: number): string
91
91
  abstract recursiveErrors(): HerbError[]
92
92
  abstract accept(visitor: Visitor): void
93
- abstract childNodes(): (Node | null | undefined)[]
93
+ abstract childNodes(): (Node | null | undefined)[]
94
94
  abstract compactChildNodes(): Node[]
95
95
 
96
96
  protected inspectArray(