adheus/vs-roku-development

files being included that are not part of the files array

FrederickEngelhardt opened this issue · 0 comments

Looks like there is the ability to pass files directly to the roku-development config string.

So far, even when passing the files array, it still includes folders such as node_modules in the roku directory when building the app.

What roku-deploy supports is passing a files array like this:

{
  "files": [
    // default paths
    "source/**/*",
    "components/**/*",
    "images/**/*",
    "manifest",
     // custom files
    "test/*"
  ]
}

Expected this to work

  "roku-development.files": [
    "source/**/*",
    "components/**/*",
    "images/**/*",
    "manifest"
  ]

Also noting that files seems to be an undocumented setting.

Hoping we can add the following the the config so that getConfig().get('files') picks up these files and passes them to roku-deploy.