Skip to content

Commit ea458c9

Browse files
authored
Merge pull request #5 from metakgp/upstream/transfer
Upstream/transfer
2 parents 5396440 + a3e7d19 commit ea458c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2743
-11793
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
- name: Deploy 🚀
4646
uses: JamesIves/github-pages-deploy-action@v4
4747
with:
48-
folder: ./build
48+
folder: ./dist

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
# dependencies
44
/node_modules
5-
/.pnp
5+
/build
6+
/dist
7+
/.pnpm
68
.pnp.js
79

810
# testing

public/index.html renamed to index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@
4646
To begin the development, run `npm start` or `yarn start`.
4747
To create a production bundle, use `npm run build` or `yarn build`.
4848
-->
49+
<script type="module" src="/src/index.tsx"></script>
4950
</body>
5051
</html>

package.json

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,27 @@
77
"@testing-library/react": "^13.4.0",
88
"@testing-library/user-event": "^13.5.0",
99
"@types/jest": "^27.5.2",
10-
"@types/node": "^16.18.112",
11-
"@types/react": "^18.3.12",
12-
"@types/react-dom": "^18.3.1",
10+
"@types/node": "^16.18.126",
11+
"@types/react": "^18.3.18",
12+
"@types/react-dom": "^18.3.5",
13+
"@vitejs/plugin-react-swc": "^3.8.0",
14+
"highlight.js": "^11.11.1",
15+
"install": "^0.13.0",
16+
"npm": "^11.1.0",
1317
"react": "^18.3.1",
1418
"react-dom": "^18.3.1",
15-
"react-icons": "^5.3.0",
16-
"react-router-dom": "^6.26.2",
17-
"react-scripts": "5.0.1",
18-
"typescript": "^5.7.2",
19+
"react-icons": "^5.5.0",
20+
"react-router-dom": "^6.29.0",
21+
"typescript": "^5.7.3",
22+
"vite": "^6.1.1",
23+
"vite-plugin-svgr": "^4.3.0",
24+
"vite-tsconfig-paths": "^5.1.4",
1925
"web-vitals": "^2.1.4"
2026
},
2127
"scripts": {
22-
"start": "react-scripts start",
23-
"build": "react-scripts build",
24-
"test": "react-scripts test",
25-
"eject": "react-scripts eject"
28+
"start": "vite",
29+
"build": "tsc && vite build",
30+
"serve": "vite preview"
2631
},
2732
"eslintConfig": {
2833
"extends": [

0 commit comments

Comments
 (0)