@borela-tech/eslint-config 2.4.2 → 2.5.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.
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.58.5"
9
+ }
10
+ ]
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borela-tech/eslint-config",
3
- "version": "2.4.2",
3
+ "version": "2.5.1",
4
4
  "description": "ESLint config used in Borela Tech projects.",
5
5
  "scripts": {
6
6
  "build": "./bin/build",
@@ -9,11 +9,14 @@
9
9
  "test": "./bin/test",
10
10
  "typecheck": "./bin/typecheck"
11
11
  },
12
- "main": "dist/index.mjs",
13
12
  "exports": {
14
13
  "import": {
15
14
  "types": "./dist/index.d.ts",
16
- "default": "./dist/index.mjs"
15
+ "default": "./dist/index.esm.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/index.cjs.js"
17
20
  }
18
21
  },
19
22
  "repository": {
@@ -42,6 +45,7 @@
42
45
  "typescript-eslint": "^8.56.1"
43
46
  },
44
47
  "devDependencies": {
48
+ "@microsoft/api-extractor": "^7.58.5",
45
49
  "@swc/jest": "^0.2.39",
46
50
  "@types/jest": "^30.0.0",
47
51
  "@types/node": "^24.12.0",
@@ -51,8 +55,7 @@
51
55
  "jest": "^30.3.0",
52
56
  "jiti": "^2.6.1",
53
57
  "typescript": "~5.9.3",
54
- "vite": "^6.3.5",
55
- "vite-plugin-dts": "^4.5.3"
58
+ "vite": "^8.0.7"
56
59
  },
57
60
  "peerDependencies": {
58
61
  "eslint": "^9.24.0",
@@ -1,82 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
- pull_request:
8
- branches:
9
- - main
10
-
11
- jobs:
12
- lint:
13
- name: Lint
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: actions/checkout@v4
17
-
18
- - name: Setup Node.js
19
- uses: actions/setup-node@v4
20
- with:
21
- node-version-file: '.node-version'
22
- cache: 'npm'
23
-
24
- - name: Install dependencies
25
- run: npm ci
26
-
27
- - name: Run lint
28
- run: ./bin/lint
29
-
30
- typecheck:
31
- name: Typecheck
32
- runs-on: ubuntu-latest
33
- steps:
34
- - uses: actions/checkout@v4
35
-
36
- - name: Setup Node.js
37
- uses: actions/setup-node@v4
38
- with:
39
- node-version-file: '.node-version'
40
- cache: 'npm'
41
-
42
- - name: Install dependencies
43
- run: npm ci
44
-
45
- - name: Run typecheck
46
- run: ./bin/typecheck
47
-
48
- test:
49
- name: Test
50
- runs-on: ubuntu-latest
51
- steps:
52
- - uses: actions/checkout@v4
53
-
54
- - name: Setup Node.js
55
- uses: actions/setup-node@v4
56
- with:
57
- node-version-file: '.node-version'
58
- cache: 'npm'
59
-
60
- - name: Install dependencies
61
- run: npm ci
62
-
63
- - name: Run tests
64
- run: ./bin/test
65
-
66
- build:
67
- name: Build
68
- runs-on: ubuntu-latest
69
- steps:
70
- - uses: actions/checkout@v4
71
-
72
- - name: Setup Node.js
73
- uses: actions/setup-node@v4
74
- with:
75
- node-version-file: '.node-version'
76
- cache: 'npm'
77
-
78
- - name: Install dependencies
79
- run: npm ci
80
-
81
- - name: Run build
82
- run: ./bin/build