Skip to content

Commit

Permalink
feat: v1 alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
joshderochervlk-simplisafe committed Nov 4, 2022
1 parent 09867c7 commit b26ad8f
Show file tree
Hide file tree
Showing 13 changed files with 11,153 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist
node_modules
coverage
.vscode
.parcel-cache
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"semi": false,
"singleQuote": true
}
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# fp-ts-remote-data
# fp-ts-remote-data

Early work in progress.

RemoteData represents a value that can be in one of four states:

Loading
Error
Empty
Success
9 changes: 9 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export default {
clearMocks: true,
collectCoverage: true,
coverageDirectory: "coverage",
coverageProvider: "v8",
transform: {
"^.+\\.(t|j)sx?$": ["@swc/jest"],
}
};

0 comments on commit b26ad8f

Please sign in to comment.