@jayree/sfdx-plugin-manifest 2.3.4 → 2.3.6

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 CHANGED
@@ -1,3 +1,21 @@
1
+ ## [2.3.6](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.3.5...v2.3.6) (2022-10-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/command from 5.2.11 to 5.2.12 ([#339](https://github.com/jayree/sfdx-plugin-manifest/issues/339)) ([ebec171](https://github.com/jayree/sfdx-plugin-manifest/commit/ebec171d2e5fbdca940dcdf7ad4176f24f99ea69))
7
+ * **deps:** bump @salesforce/source-deploy-retrieve from 6.9.0 to 6.9.1 ([#341](https://github.com/jayree/sfdx-plugin-manifest/issues/341)) ([313d7c2](https://github.com/jayree/sfdx-plugin-manifest/commit/313d7c2c11d435157eee366963209123d002ab18))
8
+
9
+ ## [2.3.5](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.3.4...v2.3.5) (2022-10-07)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **deps:** bump @salesforce/kit from 1.6.1 to 1.7.0 ([#327](https://github.com/jayree/sfdx-plugin-manifest/issues/327)) ([c662c3a](https://github.com/jayree/sfdx-plugin-manifest/commit/c662c3a273d125d3f76a7f352d8bffea9466aca8))
15
+ * **deps:** bump @salesforce/source-deploy-retrieve from 6.8.2 to 6.9.0 ([#331](https://github.com/jayree/sfdx-plugin-manifest/issues/331)) ([4297f9e](https://github.com/jayree/sfdx-plugin-manifest/commit/4297f9e87148e52851bfedf26a334d8a0bef133f))
16
+ * **deps:** bump fast-xml-parser from 4.0.10 to 4.0.11 ([#332](https://github.com/jayree/sfdx-plugin-manifest/issues/332)) ([ad6d6d2](https://github.com/jayree/sfdx-plugin-manifest/commit/ad6d6d20b608405f4c6e600c428868af495aa84c))
17
+ * **deps:** bump semver from 7.3.7 to 7.3.8 ([#334](https://github.com/jayree/sfdx-plugin-manifest/issues/334)) ([c1cd1a9](https://github.com/jayree/sfdx-plugin-manifest/commit/c1cd1a9fde362d2bf70bdf5d80cd83b196dbcb6b))
18
+
1
19
  ## [2.3.4](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.3.3...v2.3.4) (2022-10-02)
2
20
 
3
21
 
package/README.md CHANGED
@@ -22,7 +22,7 @@ $ sfdx plugins:install @jayree/sfdx-plugin-manifest
22
22
  $ sfdx jayree:[COMMAND]
23
23
  running command...
24
24
  $ sfdx plugins
25
- @jayree/sfdx-plugin-manifest 2.3.4
25
+ @jayree/sfdx-plugin-manifest 2.3.6
26
26
  $ sfdx help jayree:[COMMAND]
27
27
  USAGE
28
28
  $ sfdx jayree:COMMAND
@@ -56,16 +56,14 @@ FLAGS
56
56
 
57
57
  DESCRIPTION
58
58
  removes those tags from a manifest file that are present in a second manifest file
59
-
60
59
  Use this command to remove components or metadata types from a manifes file.
61
-
62
60
  If the 'cleanup' manifest file (--file) doesn't exist, a template file is created, which can then be modified.
63
61
 
64
62
  EXAMPLES
65
63
  $ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
66
64
  ```
67
65
 
68
- _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.4/src/commands/jayree/manifest/cleanup.ts)_
66
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.6/src/commands/jayree/manifest/cleanup.ts)_
69
67
 
70
68
  ### `sfdx jayree:manifest:generate`
71
69
 
@@ -98,7 +96,6 @@ FLAGS
98
96
 
99
97
  DESCRIPTION
100
98
  generate a complete manifest file form the specified org
101
-
102
99
  Use this command to generate a manifest file based on an existing org.
103
100
 
104
101
  EXAMPLES
@@ -109,7 +106,7 @@ EXAMPLES
109
106
  <Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
110
107
  ```
111
108
 
112
- _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.4/src/commands/jayree/manifest/generate.ts)_
109
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.6/src/commands/jayree/manifest/generate.ts)_
113
110
 
114
111
  ### `sfdx jayree:manifest:git:diff`
115
112
 
@@ -135,12 +132,10 @@ FLAGS
135
132
 
136
133
  DESCRIPTION
137
134
  create a manifest and destructiveChanges manifest using 'git diff' data
138
-
139
135
  Use this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two
140
136
  git refs.
141
137
 
142
138
  You can use all ways to spell <commit> which are valid for 'git diff'.
143
-
144
139
  (See https://git-scm.com/docs/git-diff)
145
140
 
146
141
  EXAMPLES
@@ -163,5 +158,5 @@ EXAMPLES
163
158
  uses the diff of what is unique in branchB (REF2)
164
159
  ```
165
160
 
166
- _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.4/src/commands/jayree/manifest/git/diff.ts)_
161
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.3.6/src/commands/jayree/manifest/git/diff.ts)_
167
162
  <!-- commandsstop -->
@@ -1 +1 @@
1
- {"version":"2.3.4","commands":{"jayree:manifest:cleanup":{"id":"jayree:manifest:cleanup","description":"removes those tags from a manifest file that are present in a second manifest file\nUse this command to remove components or metadata types from a manifes file.\nIf the 'cleanup' manifest file (--file) doesn't exist, a template file is created, which can then be modified.","strict":true,"usage":"<%= command.id %> [-x <filepath>] [-f <filepath>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"manifest":{"name":"manifest","type":"option","char":"x","description":"path to the manifest file","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"path to the second 'cleanup' manifest file","multiple":false}},"args":[],"flagsConfig":{"manifest":{"kind":"filepath","char":"x","description":"path to the manifest file","input":[],"multiple":false,"type":"option"},"file":{"kind":"filepath","char":"f","description":"path to the second 'cleanup' manifest file","input":[],"multiple":false,"type":"option"}},"requiresUsername":false,"supportsDevhubUsername":false,"requiresProject":true},"jayree:manifest:generate":{"id":"jayree:manifest:generate","description":"generate a complete manifest file form the specified org\nUse this command to generate a manifest file based on an existing org.","strict":true,"usage":"<%= command.id %> [-q <array>] [-c] [-w] [--includeflowversions] [-f <string>] [-x | -a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:generate --targetusername myOrg@example.com","<?xml version='1.0' encoding='UTF-8'?>","<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"quickfilter":{"name":"quickfilter","type":"option","char":"q","description":"csv separated list of metadata type, member or file names to filter on","multiple":false},"matchcase":{"name":"matchcase","type":"boolean","char":"c","description":"enable 'match case' for the quickfilter","allowNo":false},"matchwholeword":{"name":"matchwholeword","type":"boolean","char":"w","description":"enable 'match whole word' for the quickfilter","allowNo":false},"includeflowversions":{"name":"includeflowversions","type":"boolean","description":"include flow versions as with api version 43.0","allowNo":false},"file":{"name":"file","type":"option","char":"f","description":"write to 'file' instead of stdout","multiple":false},"excludemanaged":{"name":"excludemanaged","type":"boolean","char":"x","description":"exclude managed packages from output","allowNo":false,"exclusive":["excludeall"]},"excludeall":{"name":"excludeall","type":"boolean","char":"a","description":"exclude all packages from output","allowNo":false,"exclusive":["excludemanaged"]}},"args":[],"flagsConfig":{"quickfilter":{"kind":"array","char":"q","description":"csv separated list of metadata type, member or file names to filter on","input":[],"multiple":false,"type":"option"},"matchcase":{"kind":"boolean","char":"c","description":"enable 'match case' for the quickfilter","allowNo":false,"type":"boolean"},"matchwholeword":{"kind":"boolean","char":"w","description":"enable 'match whole word' for the quickfilter","allowNo":false,"type":"boolean"},"includeflowversions":{"kind":"boolean","description":"include flow versions as with api version 43.0","allowNo":false,"type":"boolean"},"file":{"kind":"string","char":"f","description":"write to 'file' instead of stdout","input":[],"multiple":false,"type":"option"},"excludemanaged":{"kind":"boolean","char":"x","description":"exclude managed packages from output","exclusive":["excludeall"],"allowNo":false,"type":"boolean"},"excludeall":{"kind":"boolean","char":"a","description":"exclude all packages from output","exclusive":["excludemanaged"],"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:manifest:git:diff":{"id":"jayree:manifest:git:diff","description":"create a manifest and destructiveChanges manifest using 'git diff' data\nUse this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two git refs.\n\nYou can use all ways to spell <commit> which are valid for 'git diff'.\n(See https://git-scm.com/docs/git-diff)","strict":true,"usage":"<%= command.id %> [-o <string>] [-d] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:git:diff <commit> <commit>","$ sfdx jayree:manifest:git:diff <commit>..<commit>","uses the changes between two arbitrary <commit>","$ sfdx jayree:manifest:git:diff <commit>...<commit>","uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both <commit>.","$ sfdx jayree:manifest:git:diff branchA..branchB","uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1)","$ sfdx jayree:manifest:git:diff branchA...branchB","uses the diff of what is unique in branchB (REF2)"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"outputdir":{"name":"outputdir","type":"option","char":"o","description":"directory to save the created manifest files","multiple":false,"default":""},"destructivechangesonly":{"name":"destructivechangesonly","type":"boolean","char":"d","description":"create a destructiveChanges manifest only (package.xml will be empty)","allowNo":false}},"args":[{"name":"ref1","description":"base commit or branch","required":true,"hidden":false},{"name":"ref2","description":"commit or branch to compare to the base commit","required":false,"hidden":false}],"flagsConfig":{"outputdir":{"kind":"string","char":"o","description":"directory to save the created manifest files","default":"","input":[],"multiple":false,"type":"option"},"destructivechangesonly":{"kind":"boolean","char":"d","description":"create a destructiveChanges manifest only (package.xml will be empty)","default":false,"allowNo":false,"type":"boolean"}},"requiresUsername":false,"supportsDevhubUsername":false,"requiresProject":true}}}
1
+ {"version":"2.3.6","commands":{"jayree:manifest:cleanup":{"id":"jayree:manifest:cleanup","description":"removes those tags from a manifest file that are present in a second manifest file\nUse this command to remove components or metadata types from a manifes file.\nIf the 'cleanup' manifest file (--file) doesn't exist, a template file is created, which can then be modified.","strict":true,"usage":"<%= command.id %> [-x <filepath>] [-f <filepath>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"manifest":{"name":"manifest","type":"option","char":"x","description":"path to the manifest file","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"path to the second 'cleanup' manifest file","multiple":false}},"args":[],"flagsConfig":{"manifest":{"kind":"filepath","char":"x","description":"path to the manifest file","input":[],"multiple":false,"type":"option"},"file":{"kind":"filepath","char":"f","description":"path to the second 'cleanup' manifest file","input":[],"multiple":false,"type":"option"}},"requiresUsername":false,"supportsDevhubUsername":false,"requiresProject":true},"jayree:manifest:generate":{"id":"jayree:manifest:generate","description":"generate a complete manifest file form the specified org\nUse this command to generate a manifest file based on an existing org.","strict":true,"usage":"<%= command.id %> [-q <array>] [-c] [-w] [--includeflowversions] [-f <string>] [-x | -a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:generate --targetusername myOrg@example.com","<?xml version='1.0' encoding='UTF-8'?>","<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"quickfilter":{"name":"quickfilter","type":"option","char":"q","description":"csv separated list of metadata type, member or file names to filter on","multiple":false},"matchcase":{"name":"matchcase","type":"boolean","char":"c","description":"enable 'match case' for the quickfilter","allowNo":false},"matchwholeword":{"name":"matchwholeword","type":"boolean","char":"w","description":"enable 'match whole word' for the quickfilter","allowNo":false},"includeflowversions":{"name":"includeflowversions","type":"boolean","description":"include flow versions as with api version 43.0","allowNo":false},"file":{"name":"file","type":"option","char":"f","description":"write to 'file' instead of stdout","multiple":false},"excludemanaged":{"name":"excludemanaged","type":"boolean","char":"x","description":"exclude managed packages from output","allowNo":false,"exclusive":["excludeall"]},"excludeall":{"name":"excludeall","type":"boolean","char":"a","description":"exclude all packages from output","allowNo":false,"exclusive":["excludemanaged"]}},"args":[],"flagsConfig":{"quickfilter":{"kind":"array","char":"q","description":"csv separated list of metadata type, member or file names to filter on","input":[],"multiple":false,"type":"option"},"matchcase":{"kind":"boolean","char":"c","description":"enable 'match case' for the quickfilter","allowNo":false,"type":"boolean"},"matchwholeword":{"kind":"boolean","char":"w","description":"enable 'match whole word' for the quickfilter","allowNo":false,"type":"boolean"},"includeflowversions":{"kind":"boolean","description":"include flow versions as with api version 43.0","allowNo":false,"type":"boolean"},"file":{"kind":"string","char":"f","description":"write to 'file' instead of stdout","input":[],"multiple":false,"type":"option"},"excludemanaged":{"kind":"boolean","char":"x","description":"exclude managed packages from output","exclusive":["excludeall"],"allowNo":false,"type":"boolean"},"excludeall":{"kind":"boolean","char":"a","description":"exclude all packages from output","exclusive":["excludemanaged"],"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:manifest:git:diff":{"id":"jayree:manifest:git:diff","description":"create a manifest and destructiveChanges manifest using 'git diff' data\nUse this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two git refs.\n\nYou can use all ways to spell <commit> which are valid for 'git diff'.\n(See https://git-scm.com/docs/git-diff)","strict":true,"usage":"<%= command.id %> [-o <string>] [-d] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@jayree/sfdx-plugin-manifest","pluginAlias":"@jayree/sfdx-plugin-manifest","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:manifest:git:diff <commit> <commit>","$ sfdx jayree:manifest:git:diff <commit>..<commit>","uses the changes between two arbitrary <commit>","$ sfdx jayree:manifest:git:diff <commit>...<commit>","uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both <commit>.","$ sfdx jayree:manifest:git:diff branchA..branchB","uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1)","$ sfdx jayree:manifest:git:diff branchA...branchB","uses the diff of what is unique in branchB (REF2)"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"outputdir":{"name":"outputdir","type":"option","char":"o","description":"directory to save the created manifest files","multiple":false,"default":""},"destructivechangesonly":{"name":"destructivechangesonly","type":"boolean","char":"d","description":"create a destructiveChanges manifest only (package.xml will be empty)","allowNo":false}},"args":[{"name":"ref1","description":"base commit or branch","required":true,"hidden":false},{"name":"ref2","description":"commit or branch to compare to the base commit","required":false,"hidden":false}],"flagsConfig":{"outputdir":{"kind":"string","char":"o","description":"directory to save the created manifest files","default":"","input":[],"multiple":false,"type":"option"},"destructivechangesonly":{"kind":"boolean","char":"d","description":"create a destructiveChanges manifest only (package.xml will be empty)","default":false,"allowNo":false,"type":"boolean"}},"requiresUsername":false,"supportsDevhubUsername":false,"requiresProject":true}}}
package/package.json CHANGED
@@ -1,32 +1,32 @@
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": "2.3.4",
4
+ "version": "2.3.6",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
8
8
  "dependencies": {
9
9
  "@oclif/core": "^1.16.4",
10
- "@salesforce/command": "^5.2.11",
11
- "@salesforce/kit": "^1.6.1",
12
- "@salesforce/source-deploy-retrieve": "^6.8.2",
10
+ "@salesforce/command": "^5.2.12",
11
+ "@salesforce/kit": "^1.7.0",
12
+ "@salesforce/source-deploy-retrieve": "^6.9.1",
13
13
  "@salesforce/ts-types": "^1.5.21",
14
14
  "debug": "^4.3.4",
15
15
  "fast-deep-equal": "^3.1.3",
16
- "fast-xml-parser": "^4.0.10",
16
+ "fast-xml-parser": "^4.0.11",
17
17
  "fs-extra": "^10.1.0",
18
18
  "isomorphic-git": "^1.21.0",
19
19
  "listr2": "^5.0.5",
20
20
  "marked": "^4.1.1",
21
21
  "marked-terminal": "^5.1.1",
22
- "semver": "^7.3.7",
22
+ "semver": "^7.3.8",
23
23
  "tslib": "^2.4.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@commitlint/cli": "^17.1.2",
27
27
  "@commitlint/config-conventional": "^17.1.0",
28
28
  "@oclif/plugin-command-snapshot": "^3",
29
- "@oclif/plugin-help": "^5.1.14",
29
+ "@oclif/plugin-help": "^5.1.15",
30
30
  "@salesforce/dev-config": "^3.1.0",
31
31
  "@salesforce/dev-scripts": "^3.1.0",
32
32
  "@salesforce/prettier-config": "^0.0.2",
@@ -37,13 +37,13 @@
37
37
  "@types/marked": "^4.0.7",
38
38
  "@types/marked-terminal": "^3.1.3",
39
39
  "@types/mocha": "^10.0.0",
40
- "@types/node": "^18.7.23",
40
+ "@types/node": "^18.8.5",
41
41
  "@types/semver": "^7.3.12",
42
42
  "@types/sinon": "10.0.13",
43
- "@typescript-eslint/eslint-plugin": "^5.38.1",
44
- "@typescript-eslint/parser": "^5.38.1",
43
+ "@typescript-eslint/eslint-plugin": "^5.40.0",
44
+ "@typescript-eslint/parser": "^5.40.0",
45
45
  "chai": "^4.3.6",
46
- "eslint": "^8.24.0",
46
+ "eslint": "^8.25.0",
47
47
  "eslint-config-oclif": "^4.0",
48
48
  "eslint-config-prettier": "^8.5.0",
49
49
  "eslint-config-salesforce": "^1.1.0",
@@ -52,18 +52,18 @@
52
52
  "eslint-plugin-import": "2.26.0",
53
53
  "eslint-plugin-jsdoc": "^39.3.6",
54
54
  "eslint-plugin-prettier": "^4.2.1",
55
- "eslint-plugin-sf-plugin": "^1.1.1",
55
+ "eslint-plugin-sf-plugin": "^1.1.2",
56
56
  "husky": "^8.0.1",
57
57
  "is-ci": "^3.0.1",
58
58
  "mocha": "^10.0.0",
59
59
  "nyc": "^15.1.0",
60
- "oclif": "^3.2.12",
60
+ "oclif": "^3.2.16",
61
61
  "patch-package": "^6.4.7",
62
62
  "pinst": "^3.0.0",
63
63
  "prettier": "^2.7.1",
64
64
  "pretty-quick": "^3.1.3",
65
65
  "shx": "^0.3.4",
66
- "sinon": "14.0.0",
66
+ "sinon": "14.0.1",
67
67
  "source-map-support": "~0.5.21",
68
68
  "ts-node": "^10.9.1",
69
69
  "typescript": "^4.8.4"
@@ -75,8 +75,7 @@
75
75
  "/lib",
76
76
  "/messages",
77
77
  "/oclif.manifest.json",
78
- "/CHANGELOG.md",
79
- "/yarn.lock"
78
+ "/CHANGELOG.md"
80
79
  ],
81
80
  "homepage": "https://github.com/jayree/sfdx-plugin-manifest",
82
81
  "keywords": [