@goodbones/core 0.1.0-beta.6 → 0.1.0-beta.7

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": "@goodbones/core",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.7",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Architecture policy as one manifest of your repository, language-agnostic: the manifest schema, the evaluators for imports, exports, members, surface, structure and the import graph, the ports a language pack implements, and the loader that turns a manifest into a policy every rule of which has proven it can fire.",
@@ -1,9 +1,9 @@
1
1
  import type { BindingKind, DeclarationKind, MemberSubject } from "./architecture-config.js";
2
2
 
3
- // What a policy can know about one source file, read once. Both adapters
4
- // produce this vocabulary — the plugin from oxlint's syntax tree, the CLI from
5
- // TypeScript's — which is what keeps them answerable to the same core rather
6
- // than to each other. A rule is evaluated against these and nothing else.
3
+ // What a policy can know about one source file, read once. A language pack
4
+ // produces this vocabulary out of its syntax tree, and both hosts read it —
5
+ // which is what keeps them answerable to the same core rather than to each
6
+ // other. A rule is evaluated against these and nothing else.
7
7
 
8
8
  // One name pulled across one import edge: `import { makeCommandBus } from "…"`
9
9
  // is a single binding, and so is the `Effect` in `import { Effect } from "effect"`.