Skip to content

Commit 78b4591

Browse files
Update dependency versions (#3286)
1 parent 05ffc46 commit 78b4591

19 files changed

Lines changed: 2594 additions & 2585 deletions

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,14 @@ jobs:
106106
run: xvfb-run -a pnpm -F @cursorless/test-talon-e2e test:quickjs
107107
if: runner.os == 'Linux' && matrix.app_version == 'stable'
108108

109-
- name: Run QuickJS tests (Win,Mac)
109+
- name: Run QuickJS tests (Win)
110110
run: pnpm -F @cursorless/test-talon-e2e test:quickjs
111-
if: runner.os != 'Linux'
111+
if: runner.os == 'Windows'
112+
113+
# QuickJS tests are currently broken on Mac, so we disable them for now.
114+
# - name: Run QuickJS tests (Win,Mac)
115+
# run: pnpm -F @cursorless/test-talon-e2e test:quickjs
116+
# if: runner.os != 'Linux'
112117

113118
- name: Create VSCode dist that can be installed locally
114119
run: pnpm -F @cursorless/app-vscode populate-dist --local-install

.meta-updater/main.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
import { updater } from "../packages/tool-meta-updater/src/index.ts";
2-
31
// oxlint-disable-next-line import/no-default-export
4-
export default updater;
2+
export { updater as default } from "../packages/tool-meta-updater/src/index.ts";

oxlint.config.mts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ import type { OxlintConfig } from "oxlint";
22
import { defineConfig } from "oxlint";
33

44
const disabledRules = [
5+
// Temporarily disabled
6+
"eslint/prefer-named-capture-group",
7+
"unicorn/import-style",
8+
59
"eslint/arrow-body-style",
610
"eslint/capitalized-comments",
711
"eslint/class-methods-use-this",
@@ -41,6 +45,7 @@ const disabledRules = [
4145
"import/no-nodejs-modules",
4246
"import/no-relative-parent-imports",
4347
"import/prefer-default-export",
48+
"node/callback-return",
4449
"oxc/no-async-await",
4550
"oxc/no-barrel-file",
4651
"oxc/no-map-spread",
@@ -52,6 +57,7 @@ const disabledRules = [
5257
"react-perf/jsx-no-new-function-as-prop",
5358
"react/forbid-component-props",
5459
"react/jsx-max-depth",
60+
"react/jsx-no-literals",
5561
"react/no-multi-comp",
5662
"react/only-export-components",
5763
"react/react-in-jsx-scope",
@@ -71,6 +77,7 @@ const disabledRules = [
7177
"unicorn/prefer-event-target",
7278
"unicorn/prefer-module",
7379
"unicorn/prefer-query-selector",
80+
"unicorn/prefer-single-call",
7481
"unicorn/prefer-spread",
7582
"unicorn/prefer-ternary",
7683
"unicorn/require-post-message-target-origin",

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@
3535
},
3636
"devDependencies": {
3737
"@pnpm/meta-updater": "^2.0.6",
38-
"@types/node": "^24.12.4",
38+
"@types/node": "^24.13.2",
3939
"esbuild": "^0.28.1",
4040
"eslint-plugin-mocha": "^11.3.0",
41-
"oxfmt": "^0.51.0",
42-
"oxlint": "^1.66.0",
41+
"oxfmt": "^0.55.0",
42+
"oxlint": "^1.70.0",
4343
"oxlint-tsgolint": "^0.23.0",
44-
"stylelint": "^17.12.0",
44+
"stylelint": "^17.13.0",
4545
"stylelint-config-standard": "^40.0.0",
4646
"stylelint-config-standard-scss": "^17.0.0",
47-
"syncpack": "^15.3.1",
48-
"tsx": "^4.22.3",
47+
"syncpack": "^15.3.2",
48+
"tsx": "^4.22.4",
4949
"typescript": "^6.0.3"
5050
},
5151
"pnpm": {

packages/app-vscode/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@
13191319
"itertools": "^2.7.1",
13201320
"lodash-es": "^4.18.1",
13211321
"nearley": "^2.20.1",
1322-
"semver": "^7.8.1",
1322+
"semver": "^7.8.4",
13231323
"trie-search": "^2.2.1",
13241324
"uuid": "^14.0.0",
13251325
"vscode-uri": "^3.1.0"
@@ -1329,14 +1329,14 @@
13291329
"@types/lodash-es": "^4.17.12",
13301330
"@types/mocha": "^10.0.10",
13311331
"@types/nearley": "^2.11.5",
1332-
"@types/node": "^24.12.4",
1332+
"@types/node": "^24.13.2",
13331333
"@types/semver": "^7.7.1",
13341334
"@types/sinon": "^21.0.1",
13351335
"@types/vscode": "1.98.0",
13361336
"esbuild": "^0.28.1",
1337-
"fast-xml-parser": "^5.8.0",
1337+
"fast-xml-parser": "^5.9.1",
13381338
"fs-extra": "^11.3.5",
13391339
"sinon": "^22.0.0",
1340-
"tsx": "^4.22.3"
1340+
"tsx": "^4.22.4"
13411341
}
13421342
}

packages/app-web-docs/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"build": "docusaurus build --out-dir out"
2424
},
2525
"dependencies": {
26-
"@algolia/client-search": "^5.52.1",
26+
"@algolia/client-search": "^5.55.0",
2727
"@cursorless/lib-common": "workspace:*",
2828
"@docsearch/react": "^4.6.3",
2929
"@docusaurus/core": "^3.10.1",
@@ -36,9 +36,9 @@
3636
"bootstrap": "^5.3.8",
3737
"docusaurus-plugin-sass": "^0.2.6",
3838
"prism-react-renderer": "^2.4.1",
39-
"react": "^19.2.6",
40-
"react-dom": "^19.2.6",
41-
"shiki": "^4.1.0",
39+
"react": "^19.2.7",
40+
"react-dom": "^19.2.7",
41+
"shiki": "^4.2.0",
4242
"unist-util-visit": "^5.1.0"
4343
},
4444
"devDependencies": {
@@ -47,9 +47,9 @@
4747
"@docusaurus/types": "^3.10.1",
4848
"@types/mdast": "^4.0.4",
4949
"@types/mocha": "^10.0.10",
50-
"@types/node": "^24.12.4",
51-
"@types/react": "^19.2.15",
52-
"sass": "^1.100.0",
50+
"@types/node": "^24.13.2",
51+
"@types/react": "^19.2.17",
52+
"sass": "^1.101.0",
5353
"typescript": "^6.0.3",
5454
"unified": "^11.0.5"
5555
}

packages/app-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"wouter-preact": "^3.10.0"
2121
},
2222
"devDependencies": {
23-
"@types/node": "^24.12.4",
23+
"@types/node": "^24.13.2",
2424
"typescript": "^6.0.3",
2525
"vite": "^8.0.16",
2626
"vite-plugin-purgecss": "^0.2.13",

packages/lib-cheatsheet-local/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@types/jest": "^30.0.0",
25-
"@types/node": "^24.12.4",
25+
"@types/node": "^24.13.2",
2626
"jest": "^30.4.2",
2727
"typescript": "^6.0.3",
2828
"vite": "^8.0.16",

packages/lib-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@types/tinycolor2": "^1.4.6",
3030
"cross-spawn": "^7.0.6",
3131
"fast-check": "^4.8.0",
32-
"js-yaml": "^4.1.1",
32+
"js-yaml": "^4.2.0",
3333
"web-tree-sitter": "^0.26.9"
3434
}
3535
}

packages/lib-engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@types/mocha": "^10.0.10",
3737
"@types/moo": "^0.5.10",
3838
"@types/nearley": "^2.11.5",
39-
"js-yaml": "^4.1.1",
39+
"js-yaml": "^4.2.0",
4040
"web-tree-sitter": "^0.26.9"
4141
}
4242
}

0 commit comments

Comments
 (0)