Skip to content

Commit

Permalink
Update packages in project
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayush Bansal committed Feb 15, 2024
1 parent 572f585 commit e03dcd7
Show file tree
Hide file tree
Showing 5 changed files with 7,105 additions and 6,137 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
REACT_APP_WEBSITE_VERSION: ${{ secrets.REACT_APP_WEBSITE_VERSION }}
REACT_APP_DESCRIPTION: ${{ secrets.REACT_APP_DESCRIPTION }}
REACT_APP_JSONBIN_MASTER_KEY: ${{secrets.REACT_APP_JSONBIN_MASTER_KEY}}
CI: ""

- name: Deploy 🚀
uses: JamesIves/[email protected]
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
"homepage": "https://ayu023ban.github.io",
"type": "module",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"dotenv": "^16.4.4",
"levenary": "^1.1.1",
"node-fetch": "^3.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "2.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "4.0.3",
"scroll-behavior-polyfill": "^2.0.13"
},
"scripts": {
Expand Down Expand Up @@ -41,6 +42,6 @@
]
},
"devDependencies": {
"gh-pages": "^3.1.0"
"gh-pages": "^6.1.1"
}
}
4 changes: 2 additions & 2 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from 'react'
import classes from './Footer.module.css'
import { DataContext } from '../../hoc/DataContext'
const footer = () => {
const Footer = () => {
const data = useContext(DataContext)
const full_name = data.profile.full_name
return (
Expand All @@ -18,4 +18,4 @@ const footer = () => {
)
}

export default footer
export default Footer
4 changes: 2 additions & 2 deletions src/components/SocialLinks/SocialLinks.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from "react";
import classes from "./SocialLinks.module.css";
import { DataContext } from "../../hoc/DataContext";
const socialLinks = () => {
const SocialLinks = () => {
const data = useContext(DataContext);
const social_links = data.profile.social_links;
return (
Expand All @@ -25,4 +25,4 @@ const socialLinks = () => {
);
};

export default socialLinks;
export default SocialLinks;
Loading

0 comments on commit e03dcd7

Please sign in to comment.