File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,16 @@ Include only the categories with these names. Corresponding config key: `include
5858jsrepo build --include-categories utils scripts
5959```
6060
61+ ### ` --include-files `
62+
63+ Additional files to include in the manifest. Corresponding config key: ` includeFiles `
64+
65+ #### Usage
66+
67+ ``` sh
68+ jsrepo build --include-files ./src/** /* .txt
69+ ```
70+
6171### ` --exclude-blocks `
6272
6373Do not include the blocks with these names. Corresponding config key: ` excludeBlocks `
Original file line number Diff line number Diff line change @@ -145,6 +145,17 @@ The path of the file in your registry.
145145}
146146```
147147
148+ ### ` includeFiles `
149+
150+ Additional files to include in the manifest. This can be used to include arbitrary extra static files which don't have language support.
151+ This config option supports ignore style glob patterns.
152+
153+ ``` jsonc showLineNumbers
154+ {
155+ " includeFiles" : [" ./src/blocks/header/hero.png" , " ./src/**/*.txt" ]
156+ }
157+ ```
158+
148159### ` listBlocks `
149160
150161` listBlocks ` is a list of block names that should be listed when the user runs the ` add ` command.
You can’t perform that action at this time.
0 commit comments