@pnpm/workspace.injected-deps-syncer 1100.0.3 → 1100.0.5

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/DirPatcher.js CHANGED
@@ -56,16 +56,16 @@ export async function applyPatch(optimizedDirPatch, sourceDir, targetDir) {
56
56
  }
57
57
  }
58
58
  }
59
- const adding = Promise.all(optimizedDirPatch.added.map(async item => {
59
+ const adding = Promise.all(optimizedDirPatch.added.map(async (item) => {
60
60
  const sourcePath = path.join(sourceDir, item.path);
61
61
  const targetPath = path.join(targetDir, item.path);
62
62
  await addRecursive(sourcePath, targetPath, item.newValue);
63
63
  }));
64
- const removing = Promise.all(optimizedDirPatch.removed.map(async item => {
64
+ const removing = Promise.all(optimizedDirPatch.removed.map(async (item) => {
65
65
  const targetPath = path.join(targetDir, item.path);
66
66
  await removeRecursive(targetPath);
67
67
  }));
68
- const modifying = Promise.all(optimizedDirPatch.modified.map(async item => {
68
+ const modifying = Promise.all(optimizedDirPatch.modified.map(async (item) => {
69
69
  const sourcePath = path.join(sourceDir, item.path);
70
70
  const targetPath = path.join(targetDir, item.path);
71
71
  if (item.oldValue === item.newValue)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/workspace.injected-deps-syncer",
3
- "version": "1100.0.3",
3
+ "version": "1100.0.5",
4
4
  "description": "Update all injected replica of a workspace package",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -27,13 +27,13 @@
27
27
  "@pnpm/util.lex-comparator": "^3.0.2",
28
28
  "@types/normalize-path": "^3.0.2",
29
29
  "normalize-path": "^3.0.0",
30
- "@pnpm/bins.linker": "1100.0.2",
31
- "@pnpm/fetching.directory-fetcher": "1100.0.3",
32
- "@pnpm/error": "1100.0.0",
33
- "@pnpm/types": "1101.0.0",
34
30
  "@pnpm/installing.modules-yaml": "1100.0.1",
31
+ "@pnpm/bins.linker": "1100.0.2",
32
+ "@pnpm/fetching.directory-fetcher": "1100.0.4",
35
33
  "@pnpm/pkg-manifest.reader": "1100.0.1",
36
- "@pnpm/workspace.projects-reader": "1101.0.0"
34
+ "@pnpm/workspace.projects-reader": "1101.0.1",
35
+ "@pnpm/types": "1101.0.0",
36
+ "@pnpm/error": "1100.0.0"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@pnpm/logger": ">=1001.0.0 <1002.0.0"
@@ -41,8 +41,8 @@
41
41
  "devDependencies": {
42
42
  "@jest/globals": "30.3.0",
43
43
  "@pnpm/logger": "1100.0.0",
44
- "@pnpm/workspace.injected-deps-syncer": "1100.0.3",
45
- "@pnpm/prepare": "1100.0.2"
44
+ "@pnpm/prepare": "1100.0.3",
45
+ "@pnpm/workspace.injected-deps-syncer": "1100.0.5"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=22.13"