mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00

* Initial webview vite migration * Make vite work * Fix test running * Enable HMR, disable vite chunking * Silence type checking errors * Vite doesn't use browserslist * get rid of breaking css flag * add doc to getHMRHtmlContent * Make it work * Changeset * Add IS_DEV to env definitions * Update tasks to include HMR * Update CSP image rules * prettier * reintroduce IS_DEV in env * add new deps to pkg lock --------- Co-authored-by: Dennis Bartlett <bartlett.dc.1@gmail.com>
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
version: 2
|
|
updates:
|
|
# Main extension dependencies
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
# Group all updates into a single PR
|
|
groups:
|
|
all-dependencies:
|
|
patterns:
|
|
- "*"
|
|
ignore:
|
|
# Ignore all non-security updates (security vulnerabilities bypass these ignore rules)
|
|
- dependency-name: "*"
|
|
update-types:
|
|
- "version-update:semver-major"
|
|
- "version-update:semver-minor"
|
|
- "version-update:semver-patch"
|
|
|
|
# Webview UI dependencies
|
|
- package-ecosystem: "npm"
|
|
directory: "/webview-ui"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
all-dependencies:
|
|
patterns:
|
|
- "*"
|
|
ignore:
|
|
- dependency-name: "@testing-library/*"
|
|
- dependency-name: "*"
|
|
update-types:
|
|
- "version-update:semver-major"
|
|
- "version-update:semver-minor"
|
|
- "version-update:semver-patch"
|