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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $ npm install -g @ably/cli
$ ably COMMAND
running command...
$ ably (--version)
@ably/cli/0.17.0 darwin-arm64 node-v22.14.0
@ably/cli/0.17.0 darwin-arm64 node-v24.4.1
$ ably --help [COMMAND]
USAGE
$ ably COMMAND
Expand Down Expand Up @@ -1272,7 +1272,7 @@ EXAMPLES
$ ably autocomplete --refresh-cache
```

_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.43/src/commands/autocomplete/index.ts)_
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.45/src/commands/autocomplete/index.ts)_

## `ably bench`

Expand Down
10 changes: 6 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import eslint from "@eslint/js"; // Import base eslint config
import vitest from '@vitest/eslint-plugin'
import eslintPluginReact from "eslint-plugin-react"
import eslintPluginReactHooks from "eslint-plugin-react-hooks"
import { fixupPluginRules } from "@eslint/compat"

export default [
{
Expand All @@ -33,7 +34,7 @@ export default [
"packages/react-web-cli/dist/index.mjs",
"bin/", // Added from .eslintrc.cjs
"playwright-report/**", // Ignore Playwright report files
"vitest.config.ts",
"**/vitest.config.ts",
".claude/worktrees/**",
".claude/skills/**"
], // Updated to match all ignorePatterns from .eslintrc.json
Expand Down Expand Up @@ -120,8 +121,8 @@ export default [
// Configuration for React Web CLI package - TSX files
files: ["packages/react-web-cli/**/*.{ts,tsx}"],
plugins: {
react: eslintPluginReact,
"react-hooks": eslintPluginReactHooks,
react: fixupPluginRules(eslintPluginReact),
"react-hooks": fixupPluginRules(eslintPluginReactHooks),
"@typescript-eslint": tsPlugin,
},
languageOptions: {
Expand All @@ -130,7 +131,8 @@ export default [
ecmaFeatures: {
jsx: true,
},
project: "./packages/react-web-cli/tsconfig.json",
project: true,
tsconfigRootDir: import.meta.dirname,
},
globals: {
...globals.browser,
Expand Down
12 changes: 6 additions & 6 deletions examples/web-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"@vercel/node": "^5.7.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^6.2.7",
"vite-tsconfig-paths": "^5.1.4"
"vite": "^8.0.8",
"vite-tsconfig-paths": "^6.1.1"
}
}
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,14 @@
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@oclif/test": "^4.1.18",
"@types/fast-levenshtein": "^0.0.4",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.0",
"@types/node": "^25.5.0",
"@types/node-fetch": "^2.6.13",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
Expand All @@ -153,13 +154,13 @@
"@vitest/coverage-v8": "^4.1.2",
"@vitest/eslint-plugin": "^1.6.14",
"@vitest/ui": "^4.1.2",
"dotenv": "^16.5.0",
"eslint": "^9.39.4",
"dotenv": "^17.4.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^58.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "^64.0.0",
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"get-port": "^7.2.0",
Expand All @@ -175,7 +176,7 @@
"strip-ansi": "^7.2.0",
"ts-node": "11.0.0-beta.1",
"typescript": "^5.9.3",
"uuid": "^11.1.0",
"uuid": "^13.0.0",
"vitest": "^4.1.2"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-web-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "^4.1.2",
"eslint-plugin-react": "^7.37.5",
"lucide-react": "^1.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "6.4.2",
"vite": "8.0.8",
"vitest": "^4.1.2"
},
"publishConfig": {
Expand Down
Loading
Loading