@pnpm/workspace.projects-filter 1100.0.26 → 1100.0.27
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/CHANGELOG.md +9 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @pnpm/filter-workspace-packages
|
|
2
2
|
|
|
3
|
+
## 1100.0.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- @pnpm/workspace.projects-graph@1100.0.23
|
|
9
|
+
- @pnpm/workspace.projects-reader@1101.0.14
|
|
10
|
+
- @pnpm/workspace.workspace-manifest-reader@1100.1.0
|
|
11
|
+
|
|
3
12
|
## 1100.0.26
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { type Project } from '@pnpm/workspace.projects-reader';
|
|
|
4
4
|
import { filterProjectsBySelectorObjectsFromDir } from './filterProjectsFromDir.js';
|
|
5
5
|
import { parseProjectSelector, type ProjectSelector } from './parseProjectSelector.js';
|
|
6
6
|
export { filterProjectsBySelectorObjectsFromDir, parseProjectSelector, type ProjectSelector };
|
|
7
|
+
export { getChangedProjects } from './getChangedProjects.js';
|
|
7
8
|
export interface WorkspaceFilter {
|
|
8
9
|
filter: string;
|
|
9
10
|
followProdDepsOnly: boolean;
|
package/lib/index.js
CHANGED
|
@@ -8,6 +8,7 @@ import { filterProjectsBySelectorObjectsFromDir } from './filterProjectsFromDir.
|
|
|
8
8
|
import { getChangedProjects } from './getChangedProjects.js';
|
|
9
9
|
import { parseProjectSelector } from './parseProjectSelector.js';
|
|
10
10
|
export { filterProjectsBySelectorObjectsFromDir, parseProjectSelector };
|
|
11
|
+
export { getChangedProjects } from './getChangedProjects.js';
|
|
11
12
|
export async function filterProjectsFromDir(workspaceDir, filter, opts) {
|
|
12
13
|
const allProjects = await findWorkspaceProjects(workspaceDir, {
|
|
13
14
|
engineStrict: opts?.engineStrict,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/workspace.projects-filter",
|
|
3
|
-
"version": "1100.0.
|
|
3
|
+
"version": "1100.0.27",
|
|
4
4
|
"description": "Filters packages in a workspace",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@pnpm/config.matcher": "1100.0.1",
|
|
31
31
|
"@pnpm/error": "1100.0.1",
|
|
32
|
-
"@pnpm/workspace.projects-graph": "1100.0.
|
|
33
|
-
"@pnpm/workspace.projects-reader": "1101.0.
|
|
34
|
-
"@pnpm/workspace.workspace-manifest-reader": "1100.0
|
|
32
|
+
"@pnpm/workspace.projects-graph": "1100.0.23",
|
|
33
|
+
"@pnpm/workspace.projects-reader": "1101.0.14",
|
|
34
|
+
"@pnpm/workspace.workspace-manifest-reader": "1100.1.0",
|
|
35
35
|
"empathic": "^2.0.0",
|
|
36
36
|
"execa": "npm:safe-execa@0.3.0",
|
|
37
37
|
"is-subdir": "^2.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@jest/globals": "30.4.1",
|
|
43
|
-
"@pnpm/types": "1101.
|
|
44
|
-
"@pnpm/workspace.projects-filter": "1100.0.
|
|
43
|
+
"@pnpm/types": "1101.4.0",
|
|
44
|
+
"@pnpm/workspace.projects-filter": "1100.0.27",
|
|
45
45
|
"@types/is-windows": "^1.0.2",
|
|
46
46
|
"@types/micromatch": "^4.0.10",
|
|
47
47
|
"@types/ramda": "0.31.1",
|