Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/merges #30

Merged
merged 36 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
01a3f69
Add Header
hamidazim321 Jul 31, 2023
c02c492
Update with footer
mershark Jul 31, 2023
0ac0109
Create display list
mershark Jul 31, 2023
bc27793
Update with style
mershark Jul 31, 2023
9674491
Correct lint error
mershark Jul 31, 2023
929bc46
Fix Linter Errors
hamidazim321 Jul 31, 2023
16ecbcb
Fix Eslint errors
hamidazim321 Jul 31, 2023
b39fc43
Merge pull request #22 from mershark/feature/display-meal
mershark Jul 31, 2023
18d20e0
add function to post and get comments from the api
hamidazim321 Jul 31, 2023
bff2a9a
Add function to create and populate popups
hamidazim321 Jul 31, 2023
74d36b6
add function to post comments
hamidazim321 Jul 31, 2023
db83f68
add comments counter
hamidazim321 Jul 31, 2023
c2a4e59
Fix eslint errors
hamidazim321 Jul 31, 2023
3c2e165
Fix Stylelint errors
hamidazim321 Jul 31, 2023
62ce965
Relocate the footer to the bottom of the page
hamidazim321 Jul 31, 2023
1c747f4
Merge pull request #23 from mershark/feature/comments
hamidazim321 Jul 31, 2023
77b4b21
Update with add function to display likes
mershark Jul 31, 2023
acdcb12
Fix linter errors
hamidazim321 Jul 31, 2023
d8eeece
Merge pull request #24 from mershark/features/like
mershark Jul 31, 2023
8ae53f7
add jsdom
hamidazim321 Jul 31, 2023
0ec6303
Add tests for the comments Counter Function
hamidazim321 Aug 1, 2023
9767259
Fix Linter errors
hamidazim321 Aug 1, 2023
ea994af
Merge pull request #27 from mershark/feature/test1
hamidazim321 Aug 1, 2023
2acd8ba
Create test2
mershark Aug 1, 2023
a743e2d
Fix Linter Errors
hamidazim321 Aug 1, 2023
7405266
Merge pull request #28 from mershark/feature/test2
mershark Aug 1, 2023
326c21a
Add final styles
hamidazim321 Aug 1, 2023
562c369
Fix Linter errors
hamidazim321 Aug 1, 2023
222803c
Merge pull request #29 from mershark/feature/finalTouches
hamidazim321 Aug 1, 2023
ce04b2e
Update README.md
mershark Aug 1, 2023
7e53e9c
Create MIT.md
mershark Aug 1, 2023
949a11a
Update the dist folder
hamidazim321 Aug 1, 2023
91703f6
Merge branch 'feature/merges' of github.com:mershark/Microverse-capst…
hamidazim321 Aug 1, 2023
72afdc5
Relocate the Counter functions into separate modules aand update the …
hamidazim321 Aug 1, 2023
869a987
Update Imports
hamidazim321 Aug 1, 2023
001b421
Update dist folder and fix linter errors
hamidazim321 Aug 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
};
Loading