Skip to content

Commit

Permalink
feat: adds seedMetadata for package version creation command (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
tshopshireSalesforce authored Jan 25, 2023
1 parent 3ac9a7c commit d8e7b7e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions sfdx-project.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@
"package",
"versionNumber"
],
"seedMetadata": [
"package",
"versionNumber"
],
"uninstallScript": [
"package",
"versionNumber"
Expand Down Expand Up @@ -121,6 +125,9 @@
"releaseNotesUrl": {
"$ref": "#/definitions/packageDirectory.releaseNotesUrl"
},
"seedMetadata": {
"$ref": "#/definitions/packageDirectory.seedMetadata"
},
"uninstallScript": {
"$ref": "#/definitions/packageDirectory.uninstallScript"
},
Expand Down Expand Up @@ -553,6 +560,21 @@
"title": "Post Install Script",
"description": "The post install script."
},
"packageDirectory.seedMetadata": {
"type": "object",
"title": "Seed Metadata",
"description": "Metadata not meant to be packaged, but deployed before deploying packaged metadata",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"title": "Path",
"description": "The path name of the package directory containing the seed metadata"
}
}
},
"packageDirectory.uninstallScript": {
"type": "string",
"title": "Uninstall Script",
Expand Down

0 comments on commit d8e7b7e

Please sign in to comment.