@jayree/sfdx-plugin-manifest 6.0.21 → 6.0.23
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 +20 -0
- package/README.md +3 -3
- package/lib/SDR-extra/utils/worthWalking.js +9 -4
- package/lib/SDR-extra/utils/worthWalking.js.map +1 -1
- package/npm-shrinkwrap.json +1936 -760
- package/oclif.lock +487 -41
- package/oclif.manifest.json +1 -1
- package/package.json +16 -8
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 powerful Salesforce CLI plugin and Node.js library to effortlessly generate, clean up, and manage package.xml and destructiveChanges.xml manifests directly from your Salesforce orgs or from Git changes in your SF projects. Unlock faster, safer, and smarter Salesforce deployments.",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.23",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
@@ -13,15 +13,17 @@
|
|
|
13
13
|
"@salesforce/sf-plugins-core": "^13.0.3",
|
|
14
14
|
"@salesforce/source-deploy-retrieve": "13.2.0",
|
|
15
15
|
"@salesforce/source-tracking": "8.1.1",
|
|
16
|
-
"@salesforce/ts-types": "^3.0
|
|
16
|
+
"@salesforce/ts-types": "^3.1.0",
|
|
17
17
|
"fast-deep-equal": "^3.1.3",
|
|
18
18
|
"fast-xml-parser": "^5.11.0",
|
|
19
19
|
"fs-extra": "^11.4.0",
|
|
20
20
|
"graceful-fs": "^4.2.11",
|
|
21
|
-
"isomorphic-git": "1.41.
|
|
21
|
+
"isomorphic-git": "1.41.9"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@
|
|
24
|
+
"@commitlint/cli": "^21.2.2",
|
|
25
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
26
|
+
"@oclif/plugin-command-snapshot": "^5.4.0",
|
|
25
27
|
"@salesforce/cli-plugins-testkit": "^5.3.66",
|
|
26
28
|
"@salesforce/dev-scripts": "^13.0.2",
|
|
27
29
|
"@salesforce/ts-sinon": "^1.4.36",
|
|
@@ -33,14 +35,20 @@
|
|
|
33
35
|
"@types/sinon": "^22.0.0",
|
|
34
36
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
35
37
|
"c8": "^12.0.0",
|
|
36
|
-
"
|
|
37
|
-
"eslint
|
|
38
|
+
"chai": "^6.2.2",
|
|
39
|
+
"eslint": "^10.9.1",
|
|
40
|
+
"eslint-config-salesforce-typescript": "^7.0.0",
|
|
38
41
|
"eslint-plugin-sf-plugin": "^3.0.0",
|
|
39
|
-
"
|
|
42
|
+
"husky": "^9.1.7",
|
|
43
|
+
"mocha": "^11.8.0",
|
|
44
|
+
"oclif": "^4.24.0",
|
|
40
45
|
"patch-package": "^8.0.1",
|
|
41
46
|
"prettier": "^3.9.6",
|
|
42
47
|
"pretty-quick": "^4.2.2",
|
|
48
|
+
"sinon": "^22.1.0",
|
|
43
49
|
"tsx": "^4.23.12",
|
|
50
|
+
"typedoc": "^0.28.20",
|
|
51
|
+
"typedoc-plugin-missing-exports": "^4.1.4",
|
|
44
52
|
"typescript": "npm:@typescript/typescript6@^6.0.2"
|
|
45
53
|
},
|
|
46
54
|
"engines": {
|
|
@@ -125,7 +133,7 @@
|
|
|
125
133
|
"prepack": "sf-prepack",
|
|
126
134
|
"prepare": "patch-package && sf-install && yarn compare-hashes",
|
|
127
135
|
"test": "wireit",
|
|
128
|
-
"test:nuts": "c8 mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
136
|
+
"test:nuts": "c8 --exclude-after-remap mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
129
137
|
"test:nuts:local": "mocha \"**/local/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
130
138
|
"test:only": "wireit",
|
|
131
139
|
"version": "oclif readme --no-aliases"
|