Skip to content

Commit 0bb009e

Browse files
committed
chore: update dependencies and devDependencies in package.json
- Bump @actions/artifact from 2.2.1 to 2.3.2 - Bump @actions/github from 6.0.0 to 6.0.1 - Bump @octokit/action from 7.0.0 to 8.0.2 - Bump @octokit/rest from 21.1.1 to 22.0.0 - Update json-2-csv from 5.5.8 to 5.5.9 - Update jstoxml from 5.0.2 to 7.0.1 - Update octokit from 4.1.1 to 5.0.3 - Bump @types/node from 22.13.4 to 22.15.29 - Add @eslint/js as a new devDependency - Update dotenv from 16.4.7 to 16.5.0 - Update eslint from 9.20.1 to 9.28.0 - Add globals as a new devDependency - Update ts-jest from 29.2.5 to 29.3.4 - Update typescript from 5.7.3 to 5.8.3 - Update typescript-eslint from 8.24.0 to 8.33.1 - Update vitest from 3.0.5 to 3.2.0
1 parent a3ad28d commit 0bb009e

File tree

6 files changed

+2680
-5050
lines changed

6 files changed

+2680
-5050
lines changed

dist/LICENSE

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1945,9 +1945,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19451945
doc-path
19461946
MIT
19471947

1948-
dot-object
1949-
MIT
1950-
19511948
event-target-shim
19521949
MIT
19531950
The MIT License (MIT)
@@ -3347,9 +3344,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
33473344
THE SOFTWARE.
33483345

33493346

3350-
twirp-ts
3351-
MIT
3352-
33533347
undici
33543348
MIT
33553349
MIT License

dist/index.js

Lines changed: 1172 additions & 2944 deletions
Large diffs are not rendered by default.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eslint.config.mjs

Lines changed: 8 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,11 @@
1-
import jest from "eslint-plugin-jest";
2-
import typescriptEslint from "@typescript-eslint/eslint-plugin";
3-
import globals from "globals";
4-
import tsParser from "@typescript-eslint/parser";
5-
import path from "node:path";
6-
import { fileURLToPath } from "node:url";
71
import js from "@eslint/js";
8-
import { FlatCompat } from "@eslint/eslintrc";
9-
10-
const __filename = fileURLToPath(import.meta.url);
11-
const __dirname = path.dirname(__filename);
12-
const compat = new FlatCompat({
13-
baseDirectory: __dirname,
14-
recommendedConfig: js.configs.recommended,
15-
allConfig: js.configs.all
16-
});
17-
18-
export default [...compat.extends(
19-
"eslint:recommended",
20-
"plugin:@typescript-eslint/eslint-recommended",
21-
"plugin:@typescript-eslint/recommended",
22-
"plugin:jest/recommended",
23-
), {
24-
plugins: {
25-
jest,
26-
"@typescript-eslint": typescriptEslint,
27-
},
28-
29-
languageOptions: {
30-
globals: {
31-
...globals.node,
32-
...jest.environments.globals.globals,
33-
},
2+
import globals from "globals";
3+
import tseslint from "typescript-eslint";
4+
import { defineConfig } from "eslint/config";
345

35-
parser: tsParser,
36-
ecmaVersion: "latest",
37-
sourceType: "module",
38-
},
396

40-
rules: {},
41-
}];
7+
export default defineConfig([
8+
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"] },
9+
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], languageOptions: { globals: globals.browser } },
10+
tseslint.configs.recommended,
11+
]);

0 commit comments

Comments
 (0)