@leancodepl/eslint-config 10.0.0 → 10.1.1

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
@@ -3,6 +3,45 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.1.1](https://github.com/leancodepl/js_corelibrary/compare/v10.1.0...v10.1.1) (2026-02-23)
7
+
8
+ **Note:** Version bump only for package @leancodepl/eslint-config
9
+
10
+ # Change Log
11
+
12
+ All notable changes to this project will be documented in this file. See
13
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
14
+
15
+ # [10.1.0](https://github.com/leancodepl/js_corelibrary/compare/v10.0.2...v10.1.0) (2026-02-16)
16
+
17
+ **Note:** Version bump only for package @leancodepl/eslint-config
18
+
19
+ # Change Log
20
+
21
+ All notable changes to this project will be documented in this file. See
22
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
23
+
24
+ ## [10.0.2](https://github.com/leancodepl/js_corelibrary/compare/v10.0.1...v10.0.2) (2026-02-13)
25
+
26
+ **Note:** Version bump only for package @leancodepl/eslint-config
27
+
28
+ # Change Log
29
+
30
+ All notable changes to this project will be documented in this file. See
31
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
32
+
33
+ ## [10.0.1](https://github.com/leancodepl/js_corelibrary/compare/v10.0.0...v10.0.1) (2026-02-13)
34
+
35
+ ### Features
36
+
37
+ - move publish targets to nx plugin
38
+ ([aa68e33](https://github.com/leancodepl/js_corelibrary/commit/aa68e33991cd9ce7af3dab3f10f1d0a8030b4d28))
39
+
40
+ # Change Log
41
+
42
+ All notable changes to this project will be documented in this file. See
43
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44
+
6
45
  # [10.0.0](https://github.com/leancodepl/js_corelibrary/compare/v9.7.4...v10.0.0) (2026-02-11)
7
46
 
8
47
  **Note:** Version bump only for package @leancodepl/eslint-config
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@leancodepl/eslint-config",
3
- "version": "10.0.0",
3
+ "version": "10.1.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "dependencies": {
8
- "@leancodepl/eslint-plugin": "10.0.0",
8
+ "@leancodepl/eslint-plugin": "10.1.1",
9
9
  "eslint-plugin-import": ">=2.31.0",
10
10
  "eslint-plugin-jsx-a11y": ">=6.10.0",
11
11
  "eslint-plugin-perfectionist": ">=5.0.0",
@@ -51,5 +51,9 @@
51
51
  "name": "LeanCode",
52
52
  "url": "https://leancode.co"
53
53
  },
54
+ "files": [
55
+ "src",
56
+ "CHANGELOG.md"
57
+ ],
54
58
  "sideEffects": false
55
59
  }
package/project.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "name": "@leancodepl/eslint-config",
3
- "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
- "sourceRoot": "packages/linters/eslint-config/src",
5
- "projectType": "library",
6
- "tags": [],
7
- "targets": {
8
- "build": {
9
- "command": "node tools/scripts/copy.mjs packages/linters/eslint-config {args.outputPath}",
10
- "configurations": {
11
- "args": {
12
- "outputPath": "{options.outputPath}"
13
- }
14
- },
15
- "options": {
16
- "outputPath": "dist/packages/linters/eslint-config"
17
- }
18
- },
19
- "publish": {
20
- "command": "node tools/scripts/publish.mjs @leancodepl/eslint-config {args.registry} {args.ver} {args.tag}",
21
- "dependsOn": ["build"]
22
- }
23
- }
24
- }