@produtype/core 1.26.1 → 1.26.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/dist/report/types.d.ts +7 -1
- package/package.json +1 -1
package/dist/report/types.d.ts
CHANGED
|
@@ -85,8 +85,14 @@ export interface ReportDiagnostics {
|
|
|
85
85
|
* Withdrawing the claim silently would be its own failure: the reader of a project
|
|
86
86
|
* whose routes are `/accedi` and `/recupero-password` would see four questions
|
|
87
87
|
* simply absent, with nothing saying why. This is what the report says instead.
|
|
88
|
+
*
|
|
89
|
+
* Optional because this interface is a published type and somebody else builds
|
|
90
|
+
* values of it. Adding a required field to it is a breaking change however small
|
|
91
|
+
* the field is, and 1.26.1 shipped one in a patch release: produtype.dev stopped
|
|
92
|
+
* compiling on the fixture it builds for its own tests. `buildReport` always sets
|
|
93
|
+
* it; the question mark is for everyone who does not.
|
|
88
94
|
*/
|
|
89
|
-
routeNamesUnread
|
|
95
|
+
routeNamesUnread?: boolean;
|
|
90
96
|
/**
|
|
91
97
|
* Whether the optional TypeScript compiler was loaded for this reading.
|
|
92
98
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@produtype/core",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.2",
|
|
4
4
|
"description": "Deterministic CLI and library that analyzes a web application repository and reports how far it is from production-ready for the kind of product it is meant to be.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|