Skip to content

Commit c57b347

Browse files
fix: move force:source:ignored:list command directly over, with aliases
1 parent 452cac5 commit c57b347

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

command-snapshot.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
{
6363
"command": "project:deploy:preview",
6464
"plugin": "@salesforce/plugin-deploy-retrieve",
65-
"flags": ["ignore-conflicts", "json", "manifest", "metadata", "only-ignored", "source-dir", "target-org"],
65+
"flags": ["ignore-conflicts", "json", "manifest", "metadata", "source-dir", "target-org"],
6666
"alias": ["deploy:metadata:preview"]
6767
},
6868
{
@@ -154,6 +154,12 @@
154154
],
155155
"alias": ["deploy:metadata:validate"]
156156
},
157+
{
158+
"command": "project:list:ignored",
159+
"plugin": "@salesforce/plugin-deploy-retrieve",
160+
"flags": ["json", "source-dir"],
161+
"alias": ["force:source:ignored:list"]
162+
},
157163
{
158164
"command": "project:manifest:create",
159165
"plugin": "@salesforce/plugin-deploy-retrieve",

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@
106106
"deploy": {
107107
"description": "Commands to deploy metadata to a Salesforce org."
108108
},
109+
"list": {
110+
"description": "Commands to list metadata in a Salesforce project."
111+
},
109112
"retrieve": {
110113
"description": "Commands to retrieve metadata from a Salesforce org"
111114
},

schemas/project-list-ignored.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/SourceIgnoredResults",
4+
"definitions": {
5+
"SourceIgnoredResults": {
6+
"type": "object",
7+
"properties": {
8+
"ignoredFiles": {
9+
"type": "array",
10+
"items": {
11+
"type": "string"
12+
}
13+
}
14+
},
15+
"required": ["ignoredFiles"],
16+
"additionalProperties": false
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)