@jayree/sfdx-plugin-manifest 3.1.39 → 3.1.41
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 +19 -0
- package/README.md +3 -3
- package/lib/SDR-extra/collections/componentSetExtra.js.map +1 -1
- package/lib/SDR-extra/resolve/gitDiffResolver.js +6 -0
- package/lib/SDR-extra/resolve/gitDiffResolver.js.map +1 -1
- package/lib/SDR-extra/resolve/treeContainersExtra.js.map +1 -1
- package/lib/SDR-extra/utils/localGitRepo.js +23 -21
- package/lib/SDR-extra/utils/localGitRepo.js.map +1 -1
- package/lib/commands/jayree/manifest/cleanup.js +16 -17
- package/lib/commands/jayree/manifest/cleanup.js.map +1 -1
- package/lib/commands/jayree/manifest/generate.js +49 -48
- package/lib/commands/jayree/manifest/generate.js.map +1 -1
- package/lib/commands/jayree/manifest/git/diff.js +45 -40
- package/lib/commands/jayree/manifest/git/diff.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/oclif.lock +299 -82
- package/oclif.manifest.json +1 -1
- package/package.json +15 -16
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
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.1.
|
|
4
|
+
"version": "3.1.41",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@jayree/changelog": "^1.1.8",
|
|
10
|
-
"@oclif/core": "^3.
|
|
11
|
-
"@salesforce/core": "^6.
|
|
12
|
-
"@salesforce/sf-plugins-core": "^5.0.
|
|
13
|
-
"@salesforce/source-deploy-retrieve": "^10.
|
|
10
|
+
"@oclif/core": "^3.14.1",
|
|
11
|
+
"@salesforce/core": "^6.4.0",
|
|
12
|
+
"@salesforce/sf-plugins-core": "^5.0.8",
|
|
13
|
+
"@salesforce/source-deploy-retrieve": "^10.2.1",
|
|
14
14
|
"debug": "^4.3.4",
|
|
15
15
|
"fast-deep-equal": "^3.1.3",
|
|
16
16
|
"fast-xml-parser": "^4.3.2",
|
|
17
17
|
"fs-extra": "^11.2.0",
|
|
18
18
|
"graceful-fs": "^4.2.11",
|
|
19
|
-
"isomorphic-git": "1.25.
|
|
19
|
+
"isomorphic-git": "1.25.1",
|
|
20
20
|
"tslib": "^2.6.2"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
|
24
|
-
"@oclif/plugin-help": "^6.0.
|
|
25
|
-
"@salesforce/cli-plugins-testkit": "^5.
|
|
26
|
-
"@salesforce/dev-scripts": "^
|
|
23
|
+
"@oclif/plugin-command-snapshot": "^5.0.4",
|
|
24
|
+
"@oclif/plugin-help": "^6.0.8",
|
|
25
|
+
"@salesforce/cli-plugins-testkit": "^5.1.1",
|
|
26
|
+
"@salesforce/dev-scripts": "^8.1.0",
|
|
27
27
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
28
28
|
"@types/debug": "^4.1.12",
|
|
29
29
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"is-ci": "^3.0.1",
|
|
37
37
|
"oclif": "^4.0.4",
|
|
38
38
|
"patch-package": "^8.0.0",
|
|
39
|
-
"prettier": "^3.1.
|
|
39
|
+
"prettier": "^3.1.1",
|
|
40
40
|
"pretty-quick": "^3.1.3",
|
|
41
41
|
"shx": "^0.3.4",
|
|
42
|
-
"ts-node": "^10.9.
|
|
42
|
+
"ts-node": "^10.9.2",
|
|
43
43
|
"typedoc": "0.25.4",
|
|
44
44
|
"typedoc-plugin-missing-exports": "2.1.0",
|
|
45
|
-
"typescript": "^5.
|
|
45
|
+
"typescript": "^5.3.3"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=16.0.0"
|
|
@@ -116,7 +116,6 @@
|
|
|
116
116
|
"prepack": "sf-prepack",
|
|
117
117
|
"prepare": "patch-package && sf-install",
|
|
118
118
|
"test": "wireit",
|
|
119
|
-
"test:compile": "wireit",
|
|
120
119
|
"test:nuts": "c8 mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
121
120
|
"test:nuts:local": "mocha \"**/local/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
122
121
|
"test:only": "wireit",
|
|
@@ -191,7 +190,7 @@
|
|
|
191
190
|
"output": []
|
|
192
191
|
},
|
|
193
192
|
"test:deprecation-policy": {
|
|
194
|
-
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
|
|
193
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
|
|
195
194
|
"files": [
|
|
196
195
|
"src/**/*.ts"
|
|
197
196
|
],
|
|
@@ -201,7 +200,7 @@
|
|
|
201
200
|
]
|
|
202
201
|
},
|
|
203
202
|
"test:json-schema": {
|
|
204
|
-
"command": "ts-node \"./bin/dev.js\" schema:compare",
|
|
203
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
|
|
205
204
|
"files": [
|
|
206
205
|
"src/**/*.ts",
|
|
207
206
|
"schemas"
|