@krivega/eslint-config 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
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.12](https://github.com/Krivega/eslint-config/compare/v1.0.11...v1.0.12) (2025-11-27)
6
+
5
7
  ### [1.0.11](https://github.com/Krivega/eslint-config/compare/v1.0.10...v1.0.11) (2025-11-24)
6
8
 
7
9
  ### [1.0.10](https://github.com/Krivega/eslint-config/compare/v1.0.9...v1.0.10) (2025-11-07)
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.12",
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": {