Skip to content

Commit

Permalink
bump deps;
Browse files Browse the repository at this point in the history
  • Loading branch information
elbakerino committed Sep 21, 2024
1 parent ac2a9ab commit 8573733
Show file tree
Hide file tree
Showing 7 changed files with 6,455 additions and 4,133 deletions.
17 changes: 0 additions & 17 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,6 @@
"deprecation/deprecation": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "none",
"requireLast": false
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}
],
"indent": [
"error",
4,
Expand All @@ -91,10 +78,6 @@
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/semi": [
"warn",
"never"
],
"semi-style": "off"
}
}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ env:

on:
push:
branches: [main, develop]
branches: [ main, develop ]
pull_request:
branches: [main, develop]
branches: [ main, develop ]
create:
tags:
- '[0-9]+.[0-9]+.[0-9]+*'
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v2
- name: Set Branch
Expand Down Expand Up @@ -63,6 +63,7 @@ jobs:
cp package.json build/
cp README.md build/
cp LICENSE build/
npm publish build
cd build
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@babel/preset-env",
{
"targets": {
"node": "14"
"node": "18"
},
"modules": false
}
Expand All @@ -32,7 +32,7 @@
"@babel/preset-typescript",
{
"targets": {
"node": "14"
"node": "18"
},
"modules": false
}
Expand Down
4 changes: 2 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ const base: Partial<Config.InitialOptions> = {
'json',
'node',
],
collectCoverage: true,
coveragePathIgnorePatterns: [
'(tests/.*.mock).(jsx?|tsx?|ts?|js?)$',
],
verbose: true,
}

const config: Config.InitialOptions = {
...base,
collectCoverage: true,
verbose: true,
projects: [{
displayName: 'test',
...base,
Expand Down
Loading

0 comments on commit 8573733

Please sign in to comment.