Skip to content

Commit

Permalink
Merge pull request #7 from onemanfighter/funding
Browse files Browse the repository at this point in the history
feat(): Adding funding
  • Loading branch information
onemanfighter authored Jul 14, 2024
2 parents 46a0a3a + fd06b7b commit 802d01c
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
14 changes: 14 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# These are supported funding model platforms

github: [onemanfighter]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
polar: # Replace with a single Polar username
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
presets: ['@babel/preset-env'],
};
w
w;
10 changes: 10 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
coverage:
status:
project:
default:
target: 90%
threshold: 5%
patch:
default:
target: 90%
threshold: 5%
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "jest --config jest.config.js",
"test:coverage": "jest --config jest.config.js --coverage ",
"test:craco": "craco test --silent --watchAll=false",
"test": "TZ=UTC jest --config jest.config.js",
"test:cov": "TZ=UTC jest --config jest.config.js --coverage ",
"test:craco": "TZ=UTC craco test --silent --watchAll=false",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:staged": "prettier --write .",
Expand Down
1 change: 0 additions & 1 deletion src/App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import renderer from 'react-test-renderer';
import { render, screen } from '@testing-library/react';
import App from './App';
import './localization/config';
Expand Down
2 changes: 1 addition & 1 deletion src/store/slice/Modal/Modal.slice.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AppStoreSlice } from '../../appStore/types';
import { ModalState, ModalStateSlice, ModalOpenState, ModalIDs } from './types';
import { ModalState, ModalStateSlice, ModalOpenState } from './types';

const initialAlertState: ModalState = {
modalID: undefined,
Expand Down

0 comments on commit 802d01c

Please sign in to comment.