create-koppajs 1.2.7 → 1.2.8
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 +11 -0
- package/README.md +6 -38
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,17 @@ _No unreleased changes yet._
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.2.8] — npm README Payload Alignment
|
|
20
|
+
|
|
21
|
+
**2026-06-24**
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- aligned the npm-facing README with the current package payload and GitHub
|
|
26
|
+
contribution links
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
19
30
|
## [1.2.7] — Router Baseline Refresh
|
|
20
31
|
|
|
21
32
|
**2026-05-14**
|
package/README.md
CHANGED
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
<li><a href="#requirements">Requirements</a></li>
|
|
52
52
|
<li><a href="#generated-starters">Generated Starters</a></li>
|
|
53
53
|
<li><a href="#ecosystem-fit">Ecosystem Fit</a></li>
|
|
54
|
-
<li><a href="#architecture-governance">Architecture & Governance</a></li>
|
|
55
54
|
<li><a href="#community-contribution">Community & Contribution</a></li>
|
|
56
55
|
<li><a href="#license">License</a></li>
|
|
57
56
|
</ol>
|
|
@@ -124,11 +123,6 @@ The stable public contract of this repository is:
|
|
|
124
123
|
- the npm package payload: `bin/`, `template/`, `template-overlays/`,
|
|
125
124
|
`README.md`, `CHANGELOG.md`, and `LICENSE`
|
|
126
125
|
|
|
127
|
-
The governing specs for that contract are:
|
|
128
|
-
|
|
129
|
-
- [docs/specs/cli-scaffolding.md](./docs/specs/cli-scaffolding.md)
|
|
130
|
-
- [docs/specs/template-starter-contract.md](./docs/specs/template-starter-contract.md)
|
|
131
|
-
|
|
132
126
|
---
|
|
133
127
|
|
|
134
128
|
## Usage
|
|
@@ -217,45 +211,19 @@ governance baseline can evolve together without hidden behavior.
|
|
|
217
211
|
|
|
218
212
|
---
|
|
219
213
|
|
|
220
|
-
## Architecture & Governance
|
|
221
|
-
|
|
222
|
-
Project intent, contributor rules, and documentation contracts live in the local repo meta layer:
|
|
223
|
-
|
|
224
|
-
- [AI_CONSTITUTION.md](./AI_CONSTITUTION.md)
|
|
225
|
-
- [ARCHITECTURE.md](./ARCHITECTURE.md)
|
|
226
|
-
- [DECISION_HIERARCHY.md](./DECISION_HIERARCHY.md)
|
|
227
|
-
- [DEVELOPMENT_RULES.md](./DEVELOPMENT_RULES.md)
|
|
228
|
-
- [TESTING_STRATEGY.md](./TESTING_STRATEGY.md)
|
|
229
|
-
- [RELEASE.md](./RELEASE.md)
|
|
230
|
-
- [ROADMAP.md](./ROADMAP.md)
|
|
231
|
-
- [CHANGELOG.md](./CHANGELOG.md)
|
|
232
|
-
- [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
233
|
-
- [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md)
|
|
234
|
-
- [docs/specs/README.md](./docs/specs/README.md)
|
|
235
|
-
- [docs/specs/repository-documentation-contract.md](./docs/specs/repository-documentation-contract.md)
|
|
236
|
-
- [docs/architecture/README.md](./docs/architecture/README.md)
|
|
237
|
-
- [docs/meta/README.md](./docs/meta/README.md)
|
|
238
|
-
- [docs/quality/README.md](./docs/quality/README.md)
|
|
239
|
-
|
|
240
|
-
The file-shape contract for `README.md`, `CHANGELOG.md`, `CODE_OF_CONDUCT.md`, and `CONTRIBUTING.md` is defined in [docs/specs/repository-documentation-contract.md](./docs/specs/repository-documentation-contract.md).
|
|
241
|
-
|
|
242
|
-
Run the local document guard before committing:
|
|
243
|
-
|
|
244
|
-
```bash
|
|
245
|
-
pnpm run check:docs
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
---
|
|
249
|
-
|
|
250
214
|
## Community & Contribution
|
|
251
215
|
|
|
252
216
|
Issues and pull requests are welcome:
|
|
253
217
|
|
|
254
218
|
https://github.com/koppajs/create-koppajs/issues
|
|
255
219
|
|
|
256
|
-
Contributor workflow details live in
|
|
220
|
+
Contributor workflow details live in the GitHub repository:
|
|
221
|
+
|
|
222
|
+
https://github.com/koppajs/create-koppajs/blob/main/CONTRIBUTING.md
|
|
223
|
+
|
|
224
|
+
Community expectations live in the GitHub repository:
|
|
257
225
|
|
|
258
|
-
|
|
226
|
+
https://github.com/koppajs/create-koppajs/blob/main/CODE_OF_CONDUCT.md
|
|
259
227
|
|
|
260
228
|
---
|
|
261
229
|
|