@jayree/sfdx-plugin-manifest 3.3.28 → 3.4.0

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 (35) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +3 -3
  3. package/lib/SDR-extra/collections/componentSetExtra.js +1 -1
  4. package/lib/SDR-extra/collections/componentSetExtra.js.map +1 -1
  5. package/lib/SDR-extra/resolve/gitDiffResolver.d.ts +4 -5
  6. package/lib/SDR-extra/resolve/gitDiffResolver.js +45 -160
  7. package/lib/SDR-extra/resolve/gitDiffResolver.js.map +1 -1
  8. package/lib/SDR-extra/resolve/treeContainersExtra.d.ts +1 -2
  9. package/lib/SDR-extra/resolve/treeContainersExtra.js +28 -15
  10. package/lib/SDR-extra/resolve/treeContainersExtra.js.map +1 -1
  11. package/lib/SDR-extra/utils/gitComponentSetArray.d.ts +25 -0
  12. package/lib/SDR-extra/utils/gitComponentSetArray.js +142 -0
  13. package/lib/SDR-extra/utils/gitComponentSetArray.js.map +1 -0
  14. package/lib/SDR-extra/utils/index.d.ts +1 -0
  15. package/lib/SDR-extra/utils/index.js +1 -0
  16. package/lib/SDR-extra/utils/index.js.map +1 -1
  17. package/lib/SDR-extra/utils/localGitRepo.d.ts +19 -23
  18. package/lib/SDR-extra/utils/localGitRepo.js +129 -129
  19. package/lib/SDR-extra/utils/localGitRepo.js.map +1 -1
  20. package/lib/SDR-extra/utils/moveDetection.d.ts +16 -0
  21. package/lib/SDR-extra/utils/moveDetection.js +137 -0
  22. package/lib/SDR-extra/utils/moveDetection.js.map +1 -0
  23. package/lib/SDR-extra/utils/statusMatrix.d.ts +10 -0
  24. package/lib/SDR-extra/utils/statusMatrix.js +78 -0
  25. package/lib/SDR-extra/utils/statusMatrix.js.map +1 -0
  26. package/lib/SDR-extra/utils/worthWalking.d.ts +1 -0
  27. package/lib/SDR-extra/utils/worthWalking.js +19 -0
  28. package/lib/SDR-extra/utils/worthWalking.js.map +1 -0
  29. package/lib/commands/jayree/manifest/git/diff.js +4 -1
  30. package/lib/commands/jayree/manifest/git/diff.js.map +1 -1
  31. package/lib/tsconfig.tsbuildinfo +1 -1
  32. package/npm-shrinkwrap.json +867 -416
  33. package/oclif.lock +335 -249
  34. package/oclif.manifest.json +1 -1
  35. package/package.json +6 -3
@@ -323,5 +323,5 @@
323
323
  ]
324
324
  }
325
325
  },
326
- "version": "3.3.28"
326
+ "version": "3.4.0"
327
327
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jayree/sfdx-plugin-manifest",
3
3
  "description": "A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.",
4
- "version": "3.3.28",
4
+ "version": "3.4.0",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
@@ -12,6 +12,7 @@
12
12
  "@salesforce/kit": "^3.2.0",
13
13
  "@salesforce/sf-plugins-core": "^11.2.4",
14
14
  "@salesforce/source-deploy-retrieve": "^12.1.11",
15
+ "@salesforce/source-tracking": "^7.1.4",
15
16
  "@salesforce/ts-types": "^2.0.12",
16
17
  "fast-deep-equal": "^3.1.3",
17
18
  "fast-xml-parser": "^4.4.1",
@@ -20,7 +21,7 @@
20
21
  "isomorphic-git": "1.27.1"
21
22
  },
22
23
  "devDependencies": {
23
- "@oclif/plugin-command-snapshot": "^5.2.10",
24
+ "@oclif/plugin-command-snapshot": "^5.2.11",
24
25
  "@oclif/plugin-help": "^6.2.7",
25
26
  "@salesforce/cli-plugins-testkit": "^5.3.21",
26
27
  "@salesforce/dev-scripts": "^10.2.9",
@@ -116,11 +117,13 @@
116
117
  "lint": "wireit",
117
118
  "postpack": "sf-clean --ignore-signing-artifacts",
118
119
  "prepack": "sf-prepack",
119
- "prepare": "patch-package && sf-install",
120
+ "prepare": "patch-package && sf-install && yarn compare-hashes",
120
121
  "test": "wireit",
121
122
  "test:nuts": "c8 mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
122
123
  "test:nuts:local": "mocha \"**/local/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
123
124
  "test:only": "wireit",
125
+ "compare-hashes": "node scripts/compare-filehash/compare.mjs",
126
+ "generate-hashes": "node scripts/compare-filehash/generate.mjs",
124
127
  "version": "oclif readme --no-aliases"
125
128
  },
126
129
  "publishConfig": {