@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.
- package/CHANGELOG.md +9 -0
- package/README.md +3 -3
- package/lib/SDR-extra/collections/componentSetExtra.js +1 -1
- package/lib/SDR-extra/collections/componentSetExtra.js.map +1 -1
- package/lib/SDR-extra/resolve/gitDiffResolver.d.ts +4 -5
- package/lib/SDR-extra/resolve/gitDiffResolver.js +45 -160
- package/lib/SDR-extra/resolve/gitDiffResolver.js.map +1 -1
- package/lib/SDR-extra/resolve/treeContainersExtra.d.ts +1 -2
- package/lib/SDR-extra/resolve/treeContainersExtra.js +28 -15
- package/lib/SDR-extra/resolve/treeContainersExtra.js.map +1 -1
- package/lib/SDR-extra/utils/gitComponentSetArray.d.ts +25 -0
- package/lib/SDR-extra/utils/gitComponentSetArray.js +142 -0
- package/lib/SDR-extra/utils/gitComponentSetArray.js.map +1 -0
- package/lib/SDR-extra/utils/index.d.ts +1 -0
- package/lib/SDR-extra/utils/index.js +1 -0
- package/lib/SDR-extra/utils/index.js.map +1 -1
- package/lib/SDR-extra/utils/localGitRepo.d.ts +19 -23
- package/lib/SDR-extra/utils/localGitRepo.js +129 -129
- package/lib/SDR-extra/utils/localGitRepo.js.map +1 -1
- package/lib/SDR-extra/utils/moveDetection.d.ts +16 -0
- package/lib/SDR-extra/utils/moveDetection.js +137 -0
- package/lib/SDR-extra/utils/moveDetection.js.map +1 -0
- package/lib/SDR-extra/utils/statusMatrix.d.ts +10 -0
- package/lib/SDR-extra/utils/statusMatrix.js +78 -0
- package/lib/SDR-extra/utils/statusMatrix.js.map +1 -0
- package/lib/SDR-extra/utils/worthWalking.d.ts +1 -0
- package/lib/SDR-extra/utils/worthWalking.js +19 -0
- package/lib/SDR-extra/utils/worthWalking.js.map +1 -0
- package/lib/commands/jayree/manifest/git/diff.js +4 -1
- package/lib/commands/jayree/manifest/git/diff.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +867 -416
- package/oclif.lock +335 -249
- package/oclif.manifest.json +1 -1
- package/package.json +6 -3
package/oclif.manifest.json
CHANGED
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.
|
|
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.
|
|
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": {
|