-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from edvincandon/core-improvements
Core improvements
- Loading branch information
Showing
26 changed files
with
913 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[test] | ||
|
||
coverage = true | ||
coverageThreshold = 0.9 | ||
coverageSkipTestFiles = true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,43 @@ | ||
{ | ||
"name": "optimistron", | ||
"packageManager": "yarn@1.22.19", | ||
"devDependencies": { | ||
"@types/jest": "^29.5.5", | ||
"@types/lodash": "^4.14.202", | ||
"@types/react-dom": "^18.2.14", | ||
"@typescript-eslint/eslint-plugin": "^6.19.1", | ||
"@typescript-eslint/parser": "^6.19.1", | ||
"clsx": "^2.0.0", | ||
"eslint": "^8.56.0", | ||
"formik": "^2.4.5", | ||
"idb": "^8.0.0", | ||
"imask": "^7.3.0", | ||
"lodash": "^4.17.21", | ||
"loglevel": "^1.9.1", | ||
"mermaid": "^10.7.0", | ||
"otpauth": "^9.2.2", | ||
"papaparse": "^5.4.1", | ||
"prettier": "^3.2.4", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-redux": "^9.1.0", | ||
"react-router-dom": "^6.21.1", | ||
"redux-saga": "^1.3.0", | ||
"redux-thunk": "^3.1.0", | ||
"serve": "^14.2.1", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.2.2" | ||
}, | ||
"peerDependencies": { | ||
"@reduxjs/toolkit": "^2.1.0", | ||
"redux": "^5.0.1" | ||
}, | ||
"scripts": { | ||
"build:usecases": "bun build ./usecases/index.tsx --outdir ./usecases/dist --entry-naming [dir]/[name].[ext] --asset-naming [name].[ext] --target browser", | ||
"serve:usecases": "bun serve ./usecases/", | ||
"watch:usecases": "bun build:usecases --watch" | ||
}, | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"author": "Edvin CANDON <edvin.candon@proton.ch>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"jest": "^29.7.0" | ||
} | ||
"name": "optimistron", | ||
"packageManager": "yarn@1.22.19", | ||
"devDependencies": { | ||
"@types/lodash": "^4.14.202", | ||
"@types/react-dom": "^18.2.14", | ||
"@typescript-eslint/eslint-plugin": "^6.19.1", | ||
"@typescript-eslint/parser": "^6.19.1", | ||
"bun-types": "^1.0.26", | ||
"clsx": "^2.0.0", | ||
"eslint": "^8.56.0", | ||
"formik": "^2.4.5", | ||
"idb": "^8.0.0", | ||
"imask": "^7.3.0", | ||
"lodash": "^4.17.21", | ||
"loglevel": "^1.9.1", | ||
"mermaid": "^10.7.0", | ||
"otpauth": "^9.2.2", | ||
"papaparse": "^5.4.1", | ||
"prettier": "^3.2.4", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-redux": "^9.1.0", | ||
"react-router-dom": "^6.21.1", | ||
"redux-saga": "^1.3.0", | ||
"redux-thunk": "^3.1.0", | ||
"serve": "^14.2.1", | ||
"typescript": "^5.2.2" | ||
}, | ||
"peerDependencies": { | ||
"@reduxjs/toolkit": "^2.1.0", | ||
"redux": "^5.0.1" | ||
}, | ||
"scripts": { | ||
"build:usecases": "bun build ./usecases/index.tsx --outdir ./usecases/dist --entry-naming [dir]/[name].[ext] --asset-naming [name].[ext] --target browser", | ||
"serve:usecases": "bun serve ./usecases/", | ||
"watch:usecases": "bun build:usecases --watch" | ||
}, | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"author": "Edvin CANDON <edvin.candon@proton.ch>", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export const MetaKey = '__OPTIMISTRON_META__' as const; | ||
export const ReducerIdKey = '__OPTIMISTRON_REF_ID__' as const; | ||
export const InitAction = { type: '__OPTIMISTRON_INIT__' } as const; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.