Skip to content

Commit

Permalink
Updates dependencies (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
fitiskin authored Oct 5, 2024
1 parent 521c291 commit 6b522c3
Show file tree
Hide file tree
Showing 20 changed files with 2,419 additions and 2,157 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

13 changes: 0 additions & 13 deletions .eslintrc.json

This file was deleted.

17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "16"
cache: "npm"
cache-dependency-path: ./package-lock.json
node-version: 20
cache: npm

- name: Install dependencies
run: npm ci

- name: Run checks
run: npm run prepare
run: npm run test
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
node_modules/
lib/
es/
coverage/
dist/
coverage/
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npm run prepare
npx --no-install lint-staged
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tag-version-prefix=""
tag-version-prefix=""
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20
16 changes: 16 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import jestPlugin from "eslint-plugin-jest";

export default tseslint.config(
{
ignores: ["**/coverage/**", "**/dist/**", "*.config.js"],
},
eslint.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
jest: jestPlugin,
},
},
);
5 changes: 0 additions & 5 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit 6b522c3

Please sign in to comment.