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

Fix the issue caused by gitignoring .yarnrc.xml #50

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
12 changes: 10 additions & 2 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/node_modules/
/.pnp
.pnp.js
/.yarn

# testing
/coverage
Expand Down Expand Up @@ -36,4 +35,13 @@ yarn-error.log*
*.tsbuildinfo

.env
/.yarnrc.yml


# yarn v1
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
873 changes: 873 additions & 0 deletions frontend/.yarn/releases/yarn-3.4.1.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions frontend/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-3.4.1.cjs
nodeLinker: node-modules
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"@fortawesome/react-fontawesome": "^0.1.18",
"@headlessui/react": "^1.6.6",
"daisyui": "^2.15.0",

"framer-motion": "^9.0.4",
"highlight.js": "^11.7.0",
"html-escaper": "^3.0.3",
Expand All @@ -42,5 +41,6 @@
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.0.24",
"typescript": "4.9.4"
}
},
"packageManager": "[email protected]"
}
Loading