You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `dev ui watch` command and its helpers contained a boolean `--oss`
flag and corresponding logic to build only the open-source parts of
the UI. This build path is no longer used, as development now
exclusively targets the CCL version.
This change completely removes the `--oss` flag, its constant, and all
related conditional logic within `pkg/cmd/dev/ui.go`. The build
process for `dev ui watch` is now streamlined to always build the CCL
version.
As part of this cleanup, the `arrangeFilesForWatchers` helper function
was refactored to remove the now-redundant `ossOnly` parameter,
simplifying its signature and call sites in the `test` and `storybook`
subcommands as well.
This resolves a piece of technical debt, making the UI development
tooling easier to understand and maintain.
Fixes#136606
Release note (cli change): Removed the stale `--oss` flag from the `dev ui watch` subcommand. This flag was no longer in use, as the UI development workflow now exclusively targets the CCL build. This change simplifies the tool by removing an unused build path and potential confusion for developers.
0 commit comments