Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciopoppe committed Dec 16, 2023
1 parent 94d9815 commit 85f92a1
Show file tree
Hide file tree
Showing 9 changed files with 12,523 additions and 9,523 deletions.
20 changes: 0 additions & 20 deletions .babelrc

This file was deleted.

15 changes: 15 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"root": true,
"extends": ["react-app", "standard"],
"rules": {
"space-before-function-paren": ["error", {
"anonymous": "ignore",
"named": "ignore",
"asyncArrow": "ignore"
}],
"no-unused-vars": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "error"
}
}

4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x']
os: [macOS-latest]
node: ['lts/Hydrogen']
os: [ubuntu-latest]

steps:
- name: Checkout repo
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x']
os: [macOS-latest]
node: ['lts/Hydrogen']
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-typescript', '@babel/preset-react']
}
4 changes: 4 additions & 0 deletions jest.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const config = {
transformIgnorePatterns: ['<rootDir>/node_modules/(?!d3-\\.*|internmap)']
}
module.exports = config
Loading

0 comments on commit 85f92a1

Please sign in to comment.