@jayree/sfdx-plugin-manifest 3.1.60 → 3.1.62
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +17 -0
- package/README.md +14 -11
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +337 -179
- package/oclif.lock +192 -120
- package/oclif.manifest.json +25 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
## [3.1.62](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.61...v3.1.62) (2024-04-05)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @salesforce/core from 6.7.3 to 6.7.6 ([#1231](https://github.com/jayree/sfdx-plugin-manifest/issues/1231)) ([97b5cf3](https://github.com/jayree/sfdx-plugin-manifest/commit/97b5cf3b1da5871cf83c535338a96c09357c5bb1))
|
7
|
+
* **deps:** bump @salesforce/sf-plugins-core from 8.0.2 to 8.0.3 ([#1227](https://github.com/jayree/sfdx-plugin-manifest/issues/1227)) ([35065ff](https://github.com/jayree/sfdx-plugin-manifest/commit/35065ffd154ce7cc0083fa1bb28b2aa191d8ebdc))
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 10.6.1 to 10.9.0 ([#1228](https://github.com/jayree/sfdx-plugin-manifest/issues/1228)) ([e221886](https://github.com/jayree/sfdx-plugin-manifest/commit/e221886b35f26a2aec22e9394bbed405aeff871a))
|
9
|
+
* **deps:** bump isomorphic-git from 1.25.6 to 1.25.7 ([#1226](https://github.com/jayree/sfdx-plugin-manifest/issues/1226)) ([0427f7a](https://github.com/jayree/sfdx-plugin-manifest/commit/0427f7aea6ac0bc8381902d9ee561cc574e315b9))
|
10
|
+
|
11
|
+
## [3.1.61](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.60...v3.1.61) (2024-03-30)
|
12
|
+
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* **deps:** bump @salesforce/sf-plugins-core from 7.1.16 to 8.0.2 ([#1222](https://github.com/jayree/sfdx-plugin-manifest/issues/1222)) ([b8e2696](https://github.com/jayree/sfdx-plugin-manifest/commit/b8e2696df8184e5c31d45a61b442cd6640ee1639))
|
17
|
+
|
1
18
|
## [3.1.60](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.59...v3.1.60) (2024-03-29)
|
2
19
|
|
3
20
|
|
package/README.md
CHANGED
@@ -27,14 +27,15 @@ Removes those tags from a manifest file that are present in a second manifest fi
|
|
27
27
|
|
28
28
|
```
|
29
29
|
USAGE
|
30
|
-
$ sfdx jayree manifest cleanup -f <value> [--json] [-x <value>]
|
30
|
+
$ sfdx jayree manifest cleanup -f <value> [--json] [--flags-dir <value>] [-x <value>]
|
31
31
|
|
32
32
|
FLAGS
|
33
33
|
-f, --file=<value> (required) Path to the second 'cleanup' manifest file.
|
34
34
|
-x, --manifest=<value> Path to the manifest file.
|
35
35
|
|
36
36
|
GLOBAL FLAGS
|
37
|
-
--
|
37
|
+
--flags-dir=<value> Import flag values from a directory.
|
38
|
+
--json Format output as json.
|
38
39
|
|
39
40
|
DESCRIPTION
|
40
41
|
Removes those tags from a manifest file that are present in a second manifest file.
|
@@ -47,7 +48,7 @@ EXAMPLES
|
|
47
48
|
$ sfdx jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
48
49
|
```
|
49
50
|
|
50
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
51
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.62/src/commands/jayree/manifest/cleanup.ts)_
|
51
52
|
|
52
53
|
### `sfdx jayree manifest generate`
|
53
54
|
|
@@ -55,8 +56,8 @@ Generate a complete manifest file form the specified org.
|
|
55
56
|
|
56
57
|
```
|
57
58
|
USAGE
|
58
|
-
$ sfdx jayree manifest generate -o <value> [--json] [--api-version <value>] [-q <value>] [-c] [-w]
|
59
|
-
[-f <value>] [--exclude-managed | --exclude-all]
|
59
|
+
$ sfdx jayree manifest generate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-q <value>] [-c] [-w]
|
60
|
+
[--include-flow-versions] [-f <value>] [--exclude-managed | --exclude-all]
|
60
61
|
|
61
62
|
FLAGS
|
62
63
|
-c, --match-case Enable 'match case' for the quickfilter.
|
@@ -71,7 +72,8 @@ FLAGS
|
|
71
72
|
--include-flow-versions Include flow versions as with api version 43.0.
|
72
73
|
|
73
74
|
GLOBAL FLAGS
|
74
|
-
--
|
75
|
+
--flags-dir=<value> Import flag values from a directory.
|
76
|
+
--json Format output as json.
|
75
77
|
|
76
78
|
DESCRIPTION
|
77
79
|
Generate a complete manifest file form the specified org.
|
@@ -84,7 +86,7 @@ EXAMPLES
|
|
84
86
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
85
87
|
```
|
86
88
|
|
87
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
89
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.62/src/commands/jayree/manifest/generate.ts)_
|
88
90
|
|
89
91
|
### `sfdx jayree manifest git diff`
|
90
92
|
|
@@ -92,8 +94,8 @@ Create a project manifest and destructiveChanges manifest that lists the metadat
|
|
92
94
|
|
93
95
|
```
|
94
96
|
USAGE
|
95
|
-
$ sfdx jayree manifest git diff REF1 [REF2] [--json] [--
|
96
|
-
[--destructive-changes-only]
|
97
|
+
$ sfdx jayree manifest git diff REF1 [REF2] [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>]
|
98
|
+
[--output-dir <value>] [--destructive-changes-only]
|
97
99
|
|
98
100
|
ARGUMENTS
|
99
101
|
REF1 Base commit or branch.
|
@@ -106,7 +108,8 @@ FLAGS
|
|
106
108
|
--output-dir=<value> Directory to save the created manifest files.
|
107
109
|
|
108
110
|
GLOBAL FLAGS
|
109
|
-
--
|
111
|
+
--flags-dir=<value> Import flag values from a directory.
|
112
|
+
--json Format output as json.
|
110
113
|
|
111
114
|
DESCRIPTION
|
112
115
|
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or
|
@@ -166,5 +169,5 @@ FLAG DESCRIPTIONS
|
|
166
169
|
The location can be an absolute path or relative to the current working directory.
|
167
170
|
```
|
168
171
|
|
169
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
172
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.62/src/commands/jayree/manifest/git/diff.ts)_
|
170
173
|
<!-- commandsstop -->
|