Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,24 @@
- When the user asks to "stage and commit", stage all current changes by default unless the user explicitly scopes which changes to include, and create a commit using Conventional Commits format.
- The commit subject must be sentence-case and match repository conventions (for example: `feat(core): Add pitch bend support` or `chore: Update lint configuration`).
- Do not use vague commit subjects; choose the type/scope/subject based on the actual staged changes.

## "Update Everything" Dependency Workflow

When the user asks to "update everything" (or equivalent phrasing for workspace-wide dependency updates), run this process end-to-end:

1. Create and switch to a new branch named `fix/depUpdates[MMDDYY]` before making changes.
2. Upgrade dependencies using latest versions first; only regress specific packages if necessary after confirming a real compatibility failure.
3. Upgrade in this order:
- Nx first using Nx-recommended CLI migration flow.
- Storybook second using Storybook-recommended CLI upgrade flow.
- Remaining workspace dependencies/devDependencies/peerDependencies afterward.
4. Apply any required config or script updates needed to keep CI/CD behavior intact.
5. Run full validation checks and ensure they pass:
- typecheck
- lint
- build
- test
- coverage threshold checks
6. Clean up temporary artifacts created during the upgrade process.
7. Before staging/committing, explicitly ask the user to confirm they verified the final result.
8. Only after user confirmation, stage and commit all intended changes using a Conventional Commit message.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
fetch-depth: 0

- uses: pnpm/action-setup@v6
with:
version: 10.33.0
run_install: false

- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm

- run: pnpm install --frozen-lockfile
env:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ jobs:
languages: ${{ matrix.language }}

- uses: pnpm/action-setup@v6
with:
version: 10.33.0
run_install: false

- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm

- run: pnpm install --frozen-lockfile
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/force-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
version: 10.33.0
run_install: false

- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm

- run: pnpm install --frozen-lockfile
env:
HUSKY: 0
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
version: 10.33.0
run_install: false

- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm

- name: Setup git creds
env:
config_email: ${{ secrets.GIT_CONFIG_EMAIL }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/storybook-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ jobs:
ref: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.head_sha || github.ref }}

- uses: pnpm/action-setup@v6
with:
version: 10.33.0
run_install: false

- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm

- run: pnpm install --frozen-lockfile
env:
Expand Down
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,34 +34,34 @@
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@nx/eslint-plugin": "22.7.2",
"@nx/js": "22.7.2",
"@nx/storybook": "22.7.2",
"@nx/vite": "22.7.2",
"@storybook/addon-docs": "^10.4.0",
"@storybook/react-vite": "^10.4.0",
"@nx/eslint-plugin": "22.7.5",
"@nx/js": "22.7.5",
"@nx/storybook": "22.7.5",
"@nx/vite": "22.7.5",
"@storybook/addon-docs": "10.4.3",
"@storybook/react-vite": "10.4.3",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.33",
"@types/node": "^25.8.0",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"@swc/core": "^1.15.41",
"@types/node": "^25.9.2",
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.0",
"eslint-plugin-storybook": "10.4.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"eslint-plugin-storybook": "10.4.3",
"husky": "^9.1.7",
"nx": "22.7.2",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"storybook": "^10.4.0",
"nx": "22.7.5",
"prettier": "^3.8.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"storybook": "10.4.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
Expand All @@ -70,4 +70,4 @@
"nx"
]
}
}
}
Loading
Loading