@leancodepl/eslint-plugin 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-plugin
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-plugin
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-plugin
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-plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leancodepl/eslint-plugin",
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",
@@ -41,5 +41,9 @@
41
41
  "name": "LeanCode",
42
42
  "url": "https://leancode.co"
43
43
  },
44
+ "files": [
45
+ "src",
46
+ "CHANGELOG.md"
47
+ ],
44
48
  "sideEffects": false
45
49
  }
package/project.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "name": "@leancodepl/eslint-plugin",
3
- "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
- "sourceRoot": "packages/linters/eslint-plugin/src",
5
- "projectType": "library",
6
- "tags": [],
7
- "targets": {
8
- "build": {
9
- "command": "node tools/scripts/copy.mjs packages/linters/eslint-plugin {args.outputPath} && rm -r {args.outputPath}/src/__tests__",
10
- "configurations": {
11
- "args": {
12
- "outputPath": "{options.outputPath}"
13
- }
14
- },
15
- "options": {
16
- "outputPath": "dist/packages/linters/eslint-plugin"
17
- }
18
- },
19
- "publish": {
20
- "command": "node tools/scripts/publish.mjs @leancodepl/eslint-plugin {args.registry} {args.ver} {args.tag}",
21
- "dependsOn": ["build"]
22
- }
23
- }
24
- }
package/vite.config.ts DELETED
@@ -1,20 +0,0 @@
1
- /* eslint-disable import/no-extraneous-dependencies */
2
- /// <reference types='vitest' />
3
- import { defineConfig } from "vite"
4
-
5
- export default defineConfig(() => ({
6
- root: import.meta.dirname,
7
- cacheDir: "../../node_modules/.vite/packages/linters/eslint-plugin",
8
- plugins: [],
9
- test: {
10
- name: "linters/eslint-plugin",
11
- watch: false,
12
- globals: true,
13
- environment: "node",
14
- include: ["{src,__tests__}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
15
- reporters: ["default"],
16
- coverage: {
17
- provider: "v8" as const,
18
- },
19
- },
20
- }))
package/vitest.config.mts DELETED
@@ -1,20 +0,0 @@
1
- import { defineConfig } from "vitest/config"
2
-
3
- export default defineConfig(() => ({
4
- root: import.meta.dirname,
5
- cacheDir: "../../node_modules/.vite/packages/linters/eslint-plugin",
6
- plugins: [],
7
- test: {
8
- name: "linters/eslint-plugin",
9
- watch: false,
10
- globals: true,
11
- environment: "node",
12
- include: ["{src,__tests__}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
13
- reporters: ["default"],
14
- passWithNoTests: true,
15
- coverage: {
16
- reportsDirectory: "../../coverage/packages/linters/eslint-plugin",
17
- provider: "v8" as const,
18
- },
19
- },
20
- }))