check-peer-dependencies 4.3.1 → 4.3.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/.idea/workspace.xml
CHANGED
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
<component name="ChangeListManager">
|
|
25
25
|
<list default="true" id="ebeb713d-6dc4-42d1-a42e-54aad95d9c0a" name="Default Changelist" comment="Restore green checkmark, and always return a boolean from isProblem">
|
|
26
26
|
<change beforePath="$PROJECT_DIR$/src/checkPeerDependencies.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/checkPeerDependencies.ts" afterDir="false" />
|
|
27
|
-
<change beforePath="$PROJECT_DIR$/src/cli.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/cli.ts" afterDir="false" />
|
|
28
27
|
</list>
|
|
29
28
|
<option name="SHOW_DIALOG" value="false" />
|
|
30
29
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -90,7 +89,9 @@
|
|
|
90
89
|
"keyToString": {
|
|
91
90
|
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
|
92
91
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
93
|
-
"
|
|
92
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
93
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
94
|
+
"git-widget-placeholder": "master",
|
|
94
95
|
"last_opened_file_path": "/Users/chris/projects/check-peer-dependencies",
|
|
95
96
|
"node.js.detected.package.eslint": "true",
|
|
96
97
|
"node.js.detected.package.tslint": "true",
|
|
@@ -109,6 +110,13 @@
|
|
|
109
110
|
<recent name="$PROJECT_DIR$/src" />
|
|
110
111
|
</key>
|
|
111
112
|
</component>
|
|
113
|
+
<component name="SharedIndexes">
|
|
114
|
+
<attachedChunks>
|
|
115
|
+
<set>
|
|
116
|
+
<option value="bundled-js-predefined-d6986cc7102b-a71380e98a7c-JavaScript-WS-252.28238.10" />
|
|
117
|
+
</set>
|
|
118
|
+
</attachedChunks>
|
|
119
|
+
</component>
|
|
112
120
|
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
113
121
|
<component name="TaskManager">
|
|
114
122
|
<task active="true" id="Default" summary="Default task">
|
|
@@ -352,4 +360,12 @@
|
|
|
352
360
|
<MESSAGE value="Restore green checkmark, and always return a boolean from isProblem" />
|
|
353
361
|
<option name="LAST_COMMIT_MESSAGE" value="Restore green checkmark, and always return a boolean from isProblem" />
|
|
354
362
|
</component>
|
|
363
|
+
<component name="github-copilot-workspace">
|
|
364
|
+
<instructionFileLocations>
|
|
365
|
+
<option value=".github/instructions" />
|
|
366
|
+
</instructionFileLocations>
|
|
367
|
+
<promptFileLocations>
|
|
368
|
+
<option value=".github/prompts" />
|
|
369
|
+
</promptFileLocations>
|
|
370
|
+
</component>
|
|
355
371
|
</project>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 4.3.2 (2025-12-30)
|
|
2
|
+
[Compare `check-peer-dependencies` versions 4.3.0 and 4.3.2](https://github.com/christopherthielen/check-peer-dependencies/compare/4.3.0...4.3.2)
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ?.endsWith to avoid NPE ([e605bbc](https://github.com/christopherthielen/check-peer-dependencies/commit/e605bbc))
|
|
7
|
+
* fix yalc detection ([625b279](https://github.com/christopherthielen/check-peer-dependencies/commit/625b279))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## 4.3.1 (2025-12-30)
|
|
2
13
|
[Compare `check-peer-dependencies` versions 4.3.0 and 4.3.1](https://github.com/christopherthielen/check-peer-dependencies/compare/4.3.0...4.3.1)
|
|
3
14
|
|
|
@@ -23,7 +23,7 @@ function getAllNestedPeerDependencies(options) {
|
|
|
23
23
|
function applySemverInformation(dep) {
|
|
24
24
|
var installedVersion = packageUtils_1.getInstalledVersion(dep);
|
|
25
25
|
var semverSatisfies = installedVersion ? semver.satisfies(installedVersion, dep.version, { includePrerelease: true }) : false;
|
|
26
|
-
var isYalc = installedVersion.endsWith('-yalc');
|
|
26
|
+
var isYalc = installedVersion === null || installedVersion === void 0 ? void 0 : installedVersion.endsWith('-yalc');
|
|
27
27
|
return __assign(__assign({}, dep), { installedVersion: installedVersion, semverSatisfies: semverSatisfies, isYalc: isYalc });
|
|
28
28
|
}
|
|
29
29
|
function applyIgnoreInformation(dep) {
|
package/package.json
CHANGED