Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude scripts directory from extension bundle (#373)
## Summary Excludes `scripts/` (added in [#251](#251)) from the extension bundle as it is not required. Current bundle: ```console extension/ ├─ bundled/ ├─ dist/ ├─ scripts/ │ ├─ bump_extension_version.sh │ ├─ bump_lsp_version.sh │ ├─ bump_ruff_version.sh ├─ CHANGELOG.md ├─ icon.png ├─ LICENSE.txt ├─ package.json ├─ pyproject.toml ├─ README.md ``` ## Test Plan Built the package, installed it manually through ruff.vsix and launched the extension to verify continued functionality. ```console python -m pip install -t ./bundled/libs --implementation py --no-deps --upgrade -r ./requirements.txt npm install npm run vsce-package ```
- Loading branch information