Skip to content

Commit

Permalink
[backend] feat: remove netlify build (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
helloitsdave authored Feb 11, 2024
1 parent fcaadef commit 07896e0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"start:local": "npx nodemon",
"start": "node dist/index.js",
"build": "tsc",
"build:netlify" : "netlify-lambda build express",
"docker:app:build": "docker build -t notes-app-be .",
"docker:app:up": "docker run -p 5001:5001 notes-app-be",
"docker:up": "docker-compose up -d",
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ function App() {
{connectionIssue && (
<h3 className="connection-warning">Warning: API Connection Issue</h3>
)}
<div className="app-content">
<NoteForm
onCancel={handleCancel}
selectedNote={selectedNote}
Expand All @@ -98,7 +97,6 @@ function App() {
handleEdit={handleEdit}
/>
)}
</div>
</div>
);
}
Expand Down

2 comments on commit 07896e0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

100.00%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
src
   index.ts100%100%100%
   prisma.ts100%100%100%
src/__mocks__
   prisma.ts100%100%100%

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

100.00%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
src
   App.tsx100%100%100%
src/api
   apiService.ts100%100%100%
src/components
   Note.tsx100%100%100%
   NoteForm.tsx100%100%100%
   NoteGrid.tsx100%100%100%
   Spinner.tsx100%100%100%

Please sign in to comment.