@jayree/sfdx-plugin-manifest 3.1.30 → 3.1.31
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 +3 -3
- package/lib/commands/jayree/manifest/generate.d.ts +1 -1
- package/lib/commands/jayree/manifest/git/diff.d.ts +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/oclif.lock +227 -184
- package/oclif.manifest.json +185 -135
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [3.1.31](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.30...v3.1.31) (2023-10-13)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @jayree/changelog from 1.1.6 to 1.1.7 ([#981](https://github.com/jayree/sfdx-plugin-manifest/issues/981)) ([0a944d8](https://github.com/jayree/sfdx-plugin-manifest/commit/0a944d888677aa683bcc5a8f7721e1dea48d748c))
|
7
|
+
* **deps:** bump @salesforce/sf-plugins-core from 3.1.25 to 4.0.0 ([#968](https://github.com/jayree/sfdx-plugin-manifest/issues/968)) ([4229dd1](https://github.com/jayree/sfdx-plugin-manifest/commit/4229dd1288117ccafc60a9ae5ad16c041e9561b9))
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 9.7.22 to 9.7.24 ([#988](https://github.com/jayree/sfdx-plugin-manifest/issues/988)) ([c4a2700](https://github.com/jayree/sfdx-plugin-manifest/commit/c4a27002a00ef4570957deda6f310e3af1f2bf5a))
|
9
|
+
|
1
10
|
## [3.1.30](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.29...v3.1.30) (2023-10-06)
|
2
11
|
|
3
12
|
|
package/README.md
CHANGED
@@ -47,7 +47,7 @@ EXAMPLES
|
|
47
47
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
48
48
|
```
|
49
49
|
|
50
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
50
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.31/src/commands/jayree/manifest/cleanup.ts)_
|
51
51
|
|
52
52
|
### `sfdx jayree:manifest:generate`
|
53
53
|
|
@@ -83,7 +83,7 @@ EXAMPLES
|
|
83
83
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
84
84
|
```
|
85
85
|
|
86
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
86
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.31/src/commands/jayree/manifest/generate.ts)_
|
87
87
|
|
88
88
|
### `sfdx jayree:manifest:git:diff`
|
89
89
|
|
@@ -165,5 +165,5 @@ FLAG DESCRIPTIONS
|
|
165
165
|
The location can be an absolute path or relative to the current working directory.
|
166
166
|
```
|
167
167
|
|
168
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
168
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.31/src/commands/jayree/manifest/git/diff.ts)_
|
169
169
|
<!-- commandsstop -->
|
@@ -32,7 +32,7 @@ export default class GeneratePackageXML extends SfCommand<PackageManifestObject>
|
|
32
32
|
static readonly flags: {
|
33
33
|
'target-org': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
34
34
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
35
|
-
'quick-filter': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[]
|
35
|
+
'quick-filter': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[], import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
36
36
|
'match-case': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
37
37
|
'match-whole-word': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
38
38
|
'include-flow-versions': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
@@ -23,7 +23,7 @@ export default class GitDiffCommand extends SfCommand<GitDiffCommandResult> {
|
|
23
23
|
static readonly aliases: string[];
|
24
24
|
static readonly flags: {
|
25
25
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
26
|
-
'source-dir': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[]
|
26
|
+
'source-dir': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[], import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
27
27
|
'output-dir': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
28
28
|
'destructive-changes-only': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
29
29
|
};
|