@pnpm/workspace.projects-reader 1100.0.1 → 1101.0.1
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/lib/findPackages.js +1 -1
- package/lib/index.d.ts +0 -2
- package/package.json +6 -6
package/lib/findPackages.js
CHANGED
|
@@ -29,7 +29,7 @@ export async function findPackages(root, opts) {
|
|
|
29
29
|
// Remove duplicate paths using `Set`
|
|
30
30
|
new Set(paths
|
|
31
31
|
.map(manifestPath => path.join(root, manifestPath))
|
|
32
|
-
.sort((path1, path2) => lexCompare(path.dirname(path1), path.dirname(path2)))), async manifestPath => {
|
|
32
|
+
.sort((path1, path2) => lexCompare(path.dirname(path1), path.dirname(path2)))), async (manifestPath) => {
|
|
33
33
|
try {
|
|
34
34
|
const rootDir = path.dirname(manifestPath);
|
|
35
35
|
return {
|
package/lib/index.d.ts
CHANGED
|
@@ -10,8 +10,6 @@ export interface FindWorkspaceProjectsOpts {
|
|
|
10
10
|
*/
|
|
11
11
|
patterns?: string[];
|
|
12
12
|
engineStrict?: boolean;
|
|
13
|
-
packageManagerStrict?: boolean;
|
|
14
|
-
packageManagerStrictVersion?: boolean;
|
|
15
13
|
nodeVersion?: string;
|
|
16
14
|
sharedWorkspaceLockfile?: boolean;
|
|
17
15
|
supportedArchitectures?: SupportedArchitectures;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/workspace.projects-reader",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1101.0.1",
|
|
4
4
|
"description": "Finds packages inside a workspace",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"@pnpm/util.lex-comparator": "^3.0.2",
|
|
28
28
|
"p-filter": "^4.1.0",
|
|
29
29
|
"tinyglobby": "^0.2.14",
|
|
30
|
-
"@pnpm/constants": "1100.0.0",
|
|
31
30
|
"@pnpm/types": "1101.0.0",
|
|
32
|
-
"@pnpm/
|
|
33
|
-
"@pnpm/
|
|
31
|
+
"@pnpm/constants": "1100.0.0",
|
|
32
|
+
"@pnpm/cli.utils": "1101.0.1",
|
|
33
|
+
"@pnpm/workspace.project-manifest-reader": "1100.0.2"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@jest/globals": "30.3.0",
|
|
40
|
+
"@pnpm/workspace.projects-reader": "1101.0.1",
|
|
40
41
|
"@pnpm/logger": "1100.0.0",
|
|
41
|
-
"@pnpm/workspace.
|
|
42
|
-
"@pnpm/workspace.workspace-manifest-reader": "1100.0.1"
|
|
42
|
+
"@pnpm/workspace.workspace-manifest-reader": "1100.0.2"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=22.13"
|