Skip to content

Commit 4e2a7bd

Browse files
committed
WIP: adding an --overlay flag to the deploy command
1 parent 30efeaa commit 4e2a7bd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/flags.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,11 @@ const out = flags.build({
133133
description: 'Output file path',
134134
});
135135

136+
const overlay = flags.build({
137+
char: 'o',
138+
description: 'Path or URL of an overlay file to apply before deploying',
139+
});
140+
136141
export {
137142
doc,
138143
docName,
@@ -149,4 +154,5 @@ export {
149154
format,
150155
expires,
151156
out,
157+
overlay,
152158
};

0 commit comments

Comments
 (0)