@krivega/eslint-config 1.0.11 → 1.0.13

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.13](https://github.com/Krivega/eslint-config/compare/v1.0.12...v1.0.13) (2025-11-27)
6
+
7
+ ### Bug Fixes
8
+
9
+ - update import paths to include .js extension and adjust TypeScript configuration settings ([e77474e](https://github.com/Krivega/eslint-config/commit/e77474ed71a7e67ec324aa6952c889eccb525198))
10
+
11
+ ### [1.0.12](https://github.com/Krivega/eslint-config/compare/v1.0.11...v1.0.12) (2025-11-27)
12
+
5
13
  ### [1.0.11](https://github.com/Krivega/eslint-config/compare/v1.0.10...v1.0.11) (2025-11-24)
6
14
 
7
15
  ### [1.0.10](https://github.com/Krivega/eslint-config/compare/v1.0.9...v1.0.10) (2025-11-07)
package/cypress.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import pluginCypress from 'eslint-plugin-cypress';
2
- import config from './index';
2
+ import config from './index.js';
3
3
  const cypressConfig = [
4
4
  ...config,
5
5
  pluginCypress.configs.recommended
package/cypress.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Linter } from 'eslint';
2
2
  import pluginCypress from 'eslint-plugin-cypress';
3
- import config from './index';
3
+ import config from './index.js';
4
4
 
5
5
  const cypressConfig: Linter.Config[] = [
6
6
  ...config,
package/jest.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import pluginJest from 'eslint-plugin-jest';
2
- import config from './index';
2
+ import config from './index.js';
3
3
  const jestConfig = [
4
4
  ...config,
5
5
  {
package/jest.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Linter } from 'eslint';
2
2
  import pluginJest from 'eslint-plugin-jest';
3
- import config from './index';
3
+ import config from './index.js';
4
4
 
5
5
  const jestConfig: Linter.Config[] = [
6
6
  ...config,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krivega/eslint-config",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "bugs": {
5
5
  "url": "https://github.com/Krivega/eslint-config/issues"
6
6
  },
@@ -29,19 +29,19 @@
29
29
  "lint:src": "yarn lint:ts",
30
30
  "lint:ts": "tsc --noEmit --project tsconfig.json",
31
31
  "prepublishOnly": "yarn build",
32
- "release": "standard-version && yarn release:publish",
33
- "release:major": "standard-version --release-as major && yarn release:publish",
34
- "release:minor": "standard-version --release-as minor && yarn release:publish",
35
- "release:pre": "standard-version --prerelease && yarn release:publish",
36
- "release:publish": "git push --follow-tags origin main && npm publish --access public",
32
+ "release": "standard-version && npm run release:publish && npm publish --access=public --registry=https://registry.npmjs.org/",
33
+ "release:alpha": "standard-version --prerelease alpha && npm run release:publish && npm publish --tag alpha --registry=https://registry.npmjs.org/",
34
+ "release:major": "standard-version --release-as major && npm run release:publish && npm publish --access=public --registry=https://registry.npmjs.org/",
35
+ "release:pre": "standard-version --prerelease && npm run release:publish && npm publish --tag prerelease --registry=https://registry.npmjs.org/",
36
+ "release:publish": "git push --follow-tags",
37
37
  "run:postinstall": "yarn --cwd ./example install && yarn --cwd ./exampleReact install"
38
38
  },
39
39
  "dependencies": {
40
40
  "@babel/preset-typescript": "^7.28.5",
41
41
  "@stylistic/eslint-plugin": "^5.6.1",
42
42
  "@types/eslint-plugin-jsx-a11y": "^6.10.1",
43
- "@typescript-eslint/eslint-plugin": "^8.47.0",
44
- "@typescript-eslint/parser": "^8.47.0",
43
+ "@typescript-eslint/eslint-plugin": "^8.48.0",
44
+ "@typescript-eslint/parser": "^8.48.0",
45
45
  "eslint": "^9.39.1",
46
46
  "eslint-import-resolver-typescript": "^4.4.4",
47
47
  "eslint-plugin-cypress": "^5.2.0",
@@ -60,7 +60,7 @@
60
60
  "devDependencies": {
61
61
  "@commitlint/cli": "^20.1.0",
62
62
  "@commitlint/config-conventional": "^20.0.0",
63
- "prettier": "^3.6.2",
63
+ "prettier": "^3.7.0",
64
64
  "standard-version": "^9.5.0"
65
65
  },
66
66
  "peerDependencies": {
package/react.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import jsxA11y from 'eslint-plugin-jsx-a11y';
2
2
  import react from 'eslint-plugin-react';
3
3
  import reactHooks from 'eslint-plugin-react-hooks';
4
- import config from './index';
4
+ import config from './index.js';
5
5
  const reactConfig = [
6
6
  ...config,
7
7
  {
package/react.ts CHANGED
@@ -2,7 +2,7 @@ import type { ESLint, Linter } from 'eslint';
2
2
  import jsxA11y from 'eslint-plugin-jsx-a11y';
3
3
  import react from 'eslint-plugin-react';
4
4
  import reactHooks from 'eslint-plugin-react-hooks';
5
- import config from './index';
5
+ import config from './index.js';
6
6
 
7
7
  const reactConfig: Linter.Config[] = [
8
8
  ...config,