@neovici/cfg 2.7.5 → 2.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
- import tseslint from 'typescript-eslint';
1
+ import tseslint, { configs } from 'typescript-eslint';
2
2
 
3
3
  export default tseslint.config({
4
4
  files: ['**/*.+(ts|tsx)'],
5
- extends: [tseslint.configs.recommended],
5
+ extends: [configs.recommended],
6
6
  rules: {
7
7
  'import/named': 'off',
8
8
  'no-unused-vars': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cfg",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "Configuration for Neovici packages",
5
5
  "homepage": "https://github.com/Neovici/cfg#readme",
6
6
  "bugs": {
@@ -45,26 +45,26 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@eslint/eslintrc": "^3.2.0",
49
- "@eslint/js": "^9.18.0",
48
+ "@eslint/eslintrc": "^3.3.3",
49
+ "@eslint/js": "^9.39.2",
50
50
  "@playwright/test": "^1.40.1",
51
51
  "@web/dev-server": "^0.4.0",
52
52
  "@web/dev-server-esbuild": "^1.0.0",
53
53
  "@web/test-runner": "^0.20.0",
54
54
  "@web/test-runner-commands": "^0.9.0",
55
55
  "@web/test-runner-playwright": "^0.11.0",
56
- "eslint": "^9.0.0",
57
- "eslint-config-prettier": "^10.0.0",
58
- "eslint-import-resolver-alias": "^1.0.0",
59
- "eslint-import-resolver-typescript": "^4.0.0",
60
- "eslint-plugin-html": "^8.0.0",
61
- "eslint-plugin-import": "^2.0.0",
62
- "eslint-plugin-mocha": "^11.0.0",
63
- "globals": "^16.0.0",
56
+ "eslint": "^9.39.2",
57
+ "eslint-config-prettier": "^10.1.8",
58
+ "eslint-import-resolver-alias": "^1.1.2",
59
+ "eslint-import-resolver-typescript": "^4.4.4",
60
+ "eslint-plugin-html": "^8.1.3",
61
+ "eslint-plugin-import": "^2.32.0",
62
+ "eslint-plugin-mocha": "^11.2.0",
63
+ "globals": "^17.0.0",
64
64
  "prettier": "^3.0.0",
65
65
  "prettier-plugin-organize-imports": "^4.3.0",
66
66
  "typescript": "^5.1.0",
67
- "typescript-eslint": "^8.20.0"
67
+ "typescript-eslint": "^8.53.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@commitlint/cli": "^20.0.0",
package/web/performer.mjs CHANGED
@@ -13,7 +13,6 @@ const perform = async (payload, context) => {
13
13
 
14
14
  export const performer = () => ({
15
15
  name: 'cz-performer',
16
- // eslint-disable-next-line max-statements
17
16
  async executeCommand({ command, payload, session }) {
18
17
  if (command !== 'cz-perform') return;
19
18
  if (session.browser.type !== 'playwright') return;