[DRAFT] Integrate CLI and improve monorepo project switching - #112
Open
damiant wants to merge 4 commits into
Open
[DRAFT] Integrate CLI and improve monorepo project switching#112damiant wants to merge 4 commits into
damiant wants to merge 4 commits into
Conversation
- Added standalone `wn` CLI under `cli/` with various commands - Updated package.json scripts to include CLI installation and build - Modified .oxlintrc.json and .vscodeignore to accommodate CLI files - Updated tsconfig.json and vitest.config.ts to include CLI in the project - Enhanced GitHub Actions workflow to install CLI dependencies
- Updated version in package.json and CHANGELOG.md to 2.2.14 - Refactored package loading logic to prevent running `npm outdated` on every project switch, enhancing performance for monorepo setups - Introduced a new function `loadPackageFile` for reading package.json metadata without triggering outdated checks
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
- Updated version in package.json and CHANGELOG.md to 2.2.16 - Improved monorepo project switching by optimizing package processing logic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new standalone CLI tool,
wn, for web and native app development, and integrates it into the repository and build system. The CLI is fully independent from the VS Code extension, with its own source, documentation, and agent skills. The PR also updates configuration and ignore files to support the CLI and documents the new features and workflows.Highlights:
wnCLI undercli/, covering a wide range of commands for project management and automation.New CLI Implementation and Documentation
wnCLI in the newcli/directory, including its ownpackage.json, scripts, dependencies, and a detailedREADME.mddescribing installation, usage, and independence from the VS Code extension. [1] [2]cli/skill/, including a comprehensiveSKILL.mdfor configuration, scaffolding, and CLI settings, and a summary table incli/skill/README.md. [1] [2]Build, Lint, and CI Integration
.github/workflows/build.ymlto install CLI dependencies and build the CLI as part of the CI process..oxlintrc.jsonto exclude CLI build artifacts and dependencies from linting.Ignore and Packaging Configuration
.vscodeignoreto include CLI sources but exclude built artifacts from the VS Code extension package.cli/.gitignoreto ignorenode_modules,dist, and other local files.Changelog
CHANGELOG.mdto document the introduction of the CLI, its features, and changes to project switching and migrations.