Skip to content

Add support for -no-file-list - #156

Merged
neilenns merged 6 commits into
mainfrom
issue155
Aug 8, 2026
Merged

Add support for -no-file-list#156
neilenns merged 6 commits into
mainfrom
issue155

Conversation

@neilenns

@neilenns neilenns commented Aug 8, 2026

Copy link
Copy Markdown
Owner

Summary by CodeRabbit

  • New Features

    • Added a noFileList option to hide the list of packaged files after packing.
    • The option is disabled by default and can be enabled through the action inputs.
  • Documentation

    • Documented the new noFileList advanced-use option and its default behavior.
  • Chores

    • Updated the supported Node.js runtime version.
    • Improved packaging and development environment configuration.

@neilenns neilenns added the enhancement New feature or request label Aug 8, 2026
@coderabbitai

coderabbitai Bot commented Aug 8, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@neilenns, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 53 minutes

You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository.

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 767ea36c-cc13-4eb2-aa27-1138bbfd5a0d

📥 Commits

Reviewing files that changed from the base of the PR and between cc797ce and 927bc7f.

⛔ Files ignored due to path filters (3)
  • dist/index.js is excluded by !**/dist/**
  • dist/index.js.map is excluded by !**/dist/**, !**/*.map
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (2)
  • action.yml
  • package.json
📝 Walkthrough

Walkthrough

The action adds a noFileList input, passes --no-file-list to the packaging command when enabled, documents the option, updates boolean defaults to strings, and updates development tooling versions and configuration.

Changes

Packaging option

Layer / File(s) Summary
Input and packaging command flow
action.yml, src/main.js, README.md
The action defines noFileList, uses quoted 'false' defaults for boolean-style inputs, appends --no-file-list when enabled, and documents the option.
Toolchain and development environment alignment
.node-version, .devcontainer/devcontainer-lock.json, package.json
The Node.js version, devcontainer feature locks, @vercel/ncc, and script permissions are updated.

Estimated code review effort: 2 (Simple) | ~10 minutes

Sequence Diagram(s)

sequenceDiagram
  participant ActionInput
  participant run
  participant StreamDeckCLI
  ActionInput->>run: provide noFileList
  run->>StreamDeckCLI: invoke packaging with --no-file-list when enabled
Loading

Possibly related issues

  • Issue 155: Adds the requested no-file-list support through the action input and packaging command flag.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly describes the main change, which adds support for suppressing the packaged file list.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch issue155

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@action.yml`:
- Around line 58-61: Set the GitHub Actions input definition for noFileList to a
documented falsy default, so omitted inputs provide a valid value to
core.getBooleanInput('noFileList') instead of an empty string.

In `@src/main.js`:
- Around line 20-23: Update the pinned `@elgato/cli` dependency and its lockfile
to a version that supports the --no-file-list option used in the argument
construction near the noFileList input handling. Verify the pack command
recognizes the flag and suppresses both the Plugin Contents log and
contents.files iteration, or replace it with a suppression option supported by
the pinned version.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: df64f965-4fc6-484b-9f9f-dd1854d0c0a1

📥 Commits

Reviewing files that changed from the base of the PR and between c0db002 and cc797ce.

⛔ Files ignored due to path filters (2)
  • dist/sourcemap-register.js is excluded by !**/dist/**
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (6)
  • .devcontainer/devcontainer-lock.json
  • .node-version
  • README.md
  • action.yml
  • package.json
  • src/main.js

Comment thread action.yml
Comment thread src/main.js
@neilenns
neilenns merged commit f9a719a into main Aug 8, 2026
2 checks passed
@neilenns
neilenns deleted the issue155 branch August 8, 2026 12:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant