Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1705943
migrate from CRA to vite
Majestic9169 Feb 24, 2025
e50399e
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 24, 2025
d803aab
Merge branch 'main' of https://github.com/metakgp/metakgp.org into up…
Majestic9169 Feb 24, 2025
622153b
feat(workflow): update deploy dir in deploy workflow
Majestic9169 Feb 24, 2025
81fe598
WIP(contribute): safety commit for contribute page
Majestic9169 Feb 24, 2025
201dc3d
feat(syntax-highlighting): add component to display syntax neatly
Majestic9169 Feb 24, 2025
58c036c
feat(contribute): add contribute page and clean up some stuff
Majestic9169 Feb 24, 2025
df7033b
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 24, 2025
3dd06ff
feat(projects): add a github repository card
Majestic9169 Feb 25, 2025
06648c8
feat(projects): add a cache that doesn't work
Majestic9169 Feb 25, 2025
3bd45c0
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 25, 2025
4c220ca
refactor(stylesheets): move css to designated folders
Majestic9169 Feb 25, 2025
9f1cabe
WIP(projects): add a section that creates a grid for repo cards
Majestic9169 Feb 25, 2025
b3b5ea9
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 25, 2025
c37647c
feat(projects): create card grid section
Majestic9169 Feb 25, 2025
64c15df
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 25, 2025
28715c5
feat(api): add dummy api calls to fetch dummy data because i don't wa…
Majestic9169 Feb 26, 2025
586d978
fix(api): dummy api calls actually work now
Majestic9169 Feb 26, 2025
15dd534
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 26, 2025
31ec6d6
feat(Projects): add a decent projects page finally
Majestic9169 Feb 26, 2025
a3e7d19
Merge branch 'main' into upstream/transfer
Majestic9169 Feb 26, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./build
folder: ./dist
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# dependencies
/node_modules
/.pnp
/build
/dist
/.pnpm
.pnp.js

# testing
Expand Down
1 change: 1 addition & 0 deletions public/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
27 changes: 16 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,27 @@
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.112",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/node": "^16.18.126",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.8.0",
"highlight.js": "^11.11.1",
"install": "^0.13.0",
"npm": "^11.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.2",
"react-scripts": "5.0.1",
"typescript": "^5.7.2",
"react-icons": "^5.5.0",
"react-router-dom": "^6.29.0",
"typescript": "^5.7.3",
"vite": "^6.1.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview"
},
"eslintConfig": {
"extends": [
Expand Down
Loading
Loading