@jayree/sfdx-plugin-manifest 3.2.23 → 3.2.24
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +9 -0
- package/README.md +19 -6
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +246 -203
- package/oclif.lock +76 -127
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [3.2.24](https://github.com/jayree/sfdx-plugin-manifest/compare/3.2.23...3.2.24) (2024-06-08)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @salesforce/core from 7.3.9 to 7.3.12 ([#1332](https://github.com/jayree/sfdx-plugin-manifest/issues/1332)) ([b199efe](https://github.com/jayree/sfdx-plugin-manifest/commit/b199efe39d411d090e712467d5841d0b59d041db))
|
7
|
+
|
8
|
+
|
9
|
+
|
1
10
|
## [3.2.23](https://github.com/jayree/sfdx-plugin-manifest/compare/3.2.22...3.2.23) (2024-06-01)
|
2
11
|
|
3
12
|
|
package/README.md
CHANGED
@@ -13,6 +13,19 @@ A Salesforce CLI plugin containing commands for creating manifest files from Sal
|
|
13
13
|
sf plugins:install @jayree/sfdx-plugin-manifest
|
14
14
|
```
|
15
15
|
|
16
|
+
> **Note:**
|
17
|
+
>
|
18
|
+
> The `jayree manifest git diff` command uses the `isomorphic-git` module, which does not support system or global git configurations. Windows users who have `autocrlf` enabled need to set this configuration locally in the repository to enhance the performance of the command.
|
19
|
+
>
|
20
|
+
> To do this, execute the following command in your repository:
|
21
|
+
>
|
22
|
+
> ```powershell
|
23
|
+
> git config --local core.autocrlf true
|
24
|
+
> ```
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
16
29
|
## Commands
|
17
30
|
|
18
31
|
<!-- commands -->
|
@@ -47,7 +60,7 @@ EXAMPLES
|
|
47
60
|
$ sf jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
48
61
|
```
|
49
62
|
|
50
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
63
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.24/src/commands/jayree/manifest/cleanup.ts)_
|
51
64
|
|
52
65
|
### `sf jayree manifest generate`
|
53
66
|
|
@@ -55,7 +68,7 @@ Generate a complete manifest file form the specified org.
|
|
55
68
|
|
56
69
|
```
|
57
70
|
USAGE
|
58
|
-
$ sf jayree manifest generate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-q <value
|
71
|
+
$ sf jayree manifest generate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-q <value>...] [-c] [-w]
|
59
72
|
[--include-flow-versions] [-f <value>] [--exclude-managed | --exclude-all]
|
60
73
|
|
61
74
|
FLAGS
|
@@ -85,7 +98,7 @@ EXAMPLES
|
|
85
98
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
86
99
|
```
|
87
100
|
|
88
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
101
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.24/src/commands/jayree/manifest/generate.ts)_
|
89
102
|
|
90
103
|
### `sf jayree manifest git diff REF1 [REF2]`
|
91
104
|
|
@@ -93,8 +106,8 @@ Create a project manifest and destructiveChanges manifest that lists the metadat
|
|
93
106
|
|
94
107
|
```
|
95
108
|
USAGE
|
96
|
-
$ sf jayree manifest git diff REF1 [REF2] [--json] [--flags-dir <value>] [--api-version <value>] [-d <value
|
97
|
-
<value>] [--destructive-changes-only]
|
109
|
+
$ sf jayree manifest git diff REF1 [REF2] [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>...]
|
110
|
+
[--output-dir <value>] [--destructive-changes-only]
|
98
111
|
|
99
112
|
ARGUMENTS
|
100
113
|
REF1 Base commit or branch.
|
@@ -168,5 +181,5 @@ FLAG DESCRIPTIONS
|
|
168
181
|
The location can be an absolute path or relative to the current working directory.
|
169
182
|
```
|
170
183
|
|
171
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
184
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.24/src/commands/jayree/manifest/git/diff.ts)_
|
172
185
|
<!-- commandsstop -->
|