Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
chore(deps): update @oclif/core to v4 and @adobe/eslint-config-aio-li…
…b-config to v5

- Update @oclif/core from 2.16.0 to ^4.9.0
- Update @oclif/plugin-not-found from ^2.3.26 to ^3 (required for core v4)
- Replace Config.plugins array access with Config.getPluginsList() (plugins is now a Map in v4)
- Replace removed ux.table() with a new src/table.js helper using the same column API
- Update @adobe/eslint-config-aio-lib-config from ^4.0.0 to ^5.0.0 (ESLint 9 + neostandard)
- Migrate ESLint config from legacy .eslintrc.json files to flat config (eslint.config.js)
- Update eslint from ^8 to ^9, swap old standard plugins for neostandard
- Update eslint-plugin-jest from ^27 to ^28 for ESLint 9 compatibility
- Update test mocks to add getPluginsList() and runHook() required by oclif core v4

Closes #792

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
  • Loading branch information
shazron and claude committed Mar 26, 2026
commit 23cfa1b776f573db3450517e4eb50805de3a5efa
8 changes: 0 additions & 8 deletions .eslintrc.json

This file was deleted.

5 changes: 0 additions & 5 deletions e2e/.eslintrc.json

This file was deleted.

21 changes: 21 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const aioLibConfig = require('@adobe/eslint-config-aio-lib-config')
const jestPlugin = require('eslint-plugin-jest')

module.exports = [
...aioLibConfig,
{
files: ['test/**/*.js', 'e2e/**/*.js'],
...jestPlugin.configs['flat/recommended'],
languageOptions: {
...jestPlugin.configs['flat/recommended'].languageOptions,
globals: {
...jestPlugin.configs['flat/recommended'].languageOptions.globals,
setFetchMock: true
}
},
rules: {
...jestPlugin.configs['flat/recommended'].rules,
'n/no-unpublished-require': 0
}
}
]
Loading
Loading