@leancodepl/linting 9.7.4 → 10.1.0

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