@jayree/sfdx-plugin-manifest 3.2.4 → 3.2.6
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +394 -29
- package/README.md +5 -5
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +496 -1343
- package/oclif.lock +1457 -1956
- package/oclif.manifest.json +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
@@ -19,7 +19,7 @@ sfdx plugins:install @jayree/sfdx-plugin-manifest
|
|
19
19
|
<!-- commands -->
|
20
20
|
* [`sfdx jayree manifest cleanup`](#sfdx-jayree-manifest-cleanup)
|
21
21
|
* [`sfdx jayree manifest generate`](#sfdx-jayree-manifest-generate)
|
22
|
-
* [`sfdx jayree manifest git diff`](#sfdx-jayree-manifest-git-diff)
|
22
|
+
* [`sfdx jayree manifest git diff REF1 [REF2]`](#sfdx-jayree-manifest-git-diff-ref1-ref2)
|
23
23
|
|
24
24
|
### `sfdx jayree manifest cleanup`
|
25
25
|
|
@@ -48,7 +48,7 @@ EXAMPLES
|
|
48
48
|
$ sfdx jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
49
49
|
```
|
50
50
|
|
51
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
51
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/cleanup.ts)_
|
52
52
|
|
53
53
|
### `sfdx jayree manifest generate`
|
54
54
|
|
@@ -86,9 +86,9 @@ EXAMPLES
|
|
86
86
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
87
87
|
```
|
88
88
|
|
89
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
89
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/generate.ts)_
|
90
90
|
|
91
|
-
### `sfdx jayree manifest git diff`
|
91
|
+
### `sfdx jayree manifest git diff REF1 [REF2]`
|
92
92
|
|
93
93
|
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or delete based on changes in your git history.
|
94
94
|
|
@@ -169,5 +169,5 @@ FLAG DESCRIPTIONS
|
|
169
169
|
The location can be an absolute path or relative to the current working directory.
|
170
170
|
```
|
171
171
|
|
172
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
172
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/git/diff.ts)_
|
173
173
|
<!-- commandsstop -->
|