@pnpm/workspace.root-finder 1000.1.3 → 1100.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # @pnpm/find-workspace-dir
1
+ # @pnpm/workspace.root-finder
2
2
 
3
3
  > Finds the root of a pnpm workspace
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@pnpm/find-workspace-dir.svg)](https://www.npmjs.com/package/@pnpm/find-workspace-dir)
5
+ [![npm version](https://img.shields.io/npm/v/@pnpm/workspace.root-finder.svg)](https://npmx.dev/package/@pnpm/workspace.root-finder)
6
6
 
7
7
  ## Installation
8
8
 
9
9
  ```sh
10
- pnpm add @pnpm/find-workspace-dir
10
+ pnpm add @pnpm/workspace.root-finder
11
11
  ```
12
12
 
13
13
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/workspace.root-finder",
3
- "version": "1000.1.3",
3
+ "version": "1100.0.1",
4
4
  "description": "Finds the root of a pnpm workspace",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -24,11 +24,12 @@
24
24
  "!*.map"
25
25
  ],
26
26
  "dependencies": {
27
- "find-up": "^7.0.0",
28
- "@pnpm/error": "1000.0.5"
27
+ "find-up": "^8.0.0",
28
+ "@pnpm/error": "1100.0.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@pnpm/workspace.root-finder": "1000.1.3"
31
+ "@jest/globals": "30.3.0",
32
+ "@pnpm/workspace.root-finder": "1100.0.1"
32
33
  },
33
34
  "engines": {
34
35
  "node": ">=22.13"
@@ -38,8 +39,8 @@
38
39
  },
39
40
  "scripts": {
40
41
  "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
41
- "_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest",
42
- "test": "pnpm run compile && pnpm run _test",
43
- "compile": "tsgo --build && pnpm run lint --fix"
42
+ "test": "pn compile && pn .test",
43
+ "compile": "tsgo --build && pn lint --fix",
44
+ ".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest"
44
45
  }
45
46
  }