@pnpm/workspace.projects-reader 1101.0.0 → 1101.0.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/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # @pnpm/workspace.find-packages
1
+ # @pnpm/workspace.projects-reader
2
2
 
3
3
  > Finds packages inside a workspace
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@pnpm/workspace.find-packages.svg)](https://www.npmjs.com/package/@pnpm/workspace.find-packages)
5
+ [![npm version](https://img.shields.io/npm/v/@pnpm/workspace.projects-reader.svg)](https://npmx.dev/package/@pnpm/workspace.projects-reader)
6
6
 
7
7
  ## Installation
8
8
 
9
9
  ```sh
10
- pnpm add @pnpm/workspace.find-packages
10
+ pnpm add @pnpm/workspace.projects-reader
11
11
  ```
12
12
 
13
13
  ## License
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/workspace.projects-reader",
3
- "version": "1101.0.0",
3
+ "version": "1101.0.2",
4
4
  "description": "Finds packages inside a workspace",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -27,10 +27,10 @@
27
27
  "@pnpm/util.lex-comparator": "^3.0.2",
28
28
  "p-filter": "^4.1.0",
29
29
  "tinyglobby": "^0.2.14",
30
- "@pnpm/cli.utils": "1101.0.0",
31
- "@pnpm/types": "1101.0.0",
30
+ "@pnpm/cli.utils": "1101.0.2",
32
31
  "@pnpm/constants": "1100.0.0",
33
- "@pnpm/workspace.project-manifest-reader": "1100.0.2"
32
+ "@pnpm/types": "1101.0.0",
33
+ "@pnpm/workspace.project-manifest-reader": "1100.0.3"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@pnpm/logger": ">=1001.0.0 <1002.0.0"
@@ -38,8 +38,8 @@
38
38
  "devDependencies": {
39
39
  "@jest/globals": "30.3.0",
40
40
  "@pnpm/logger": "1100.0.0",
41
- "@pnpm/workspace.workspace-manifest-reader": "1100.0.1",
42
- "@pnpm/workspace.projects-reader": "1101.0.0"
41
+ "@pnpm/workspace.workspace-manifest-reader": "1100.0.2",
42
+ "@pnpm/workspace.projects-reader": "1101.0.2"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=22.13"