@cuzfrog/pi-module-gates 0.17.0 → 0.17.2
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": "@cuzfrog/pi-module-gates",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"description": "pi extension that controls the entropy of the codebase by enforcing code module boundaries.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
]
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"yaml": "2.
|
|
25
|
+
"yaml": "2.9.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@earendil-works/pi-coding-agent": "*"
|
|
@@ -9,8 +9,8 @@ A `{{descriptorFileName}}` with a `visible` list means only entries in the list
|
|
|
9
9
|
{{#if moduleInterfaceImportGate}}- {{moduleInterfaceImportGate}}{{/if}}
|
|
10
10
|
|
|
11
11
|
### Glossary
|
|
12
|
-
- `module`: a directory containing code;
|
|
13
|
-
- `external files`: files not in the module directory;
|
|
12
|
+
- `module`: a directory containing code, all files in its recursive subdirectories are internal files of the module;
|
|
13
|
+
- `external files`: files not in the module directory and subdirectories;
|
|
14
14
|
- `module interface`: the file representing the module surface, e.g. `index.ts` in Typescript, `mod.rs` in Rust;
|
|
15
15
|
- `readonly`: files are readonly;
|
|
16
16
|
- `sealed`: files cannot add new exports, but the body is still editable; the export surface is sealed;
|