Skip to content

Commit

Permalink
feat: tabs with xp sources and graph (#3)
Browse files Browse the repository at this point in the history
* docs: adds issue_template

* docs: adds pr_template.md & contribution.md

* feat: tabs with xp sources
  • Loading branch information
irffanasiff authored Nov 22, 2022
1 parent 639a96f commit b767e86
Show file tree
Hide file tree
Showing 26 changed files with 1,363 additions and 709 deletions.
5 changes: 4 additions & 1 deletion .github/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ git clone https://github.com/irffanasiff/Superteam-Reputation.git
cd Superteam-Reputation
# install the dependencies using pnpm
pnpm i
# create a new branch and start working
git checkout -b <your-branch-name>
# run the development server
pnpm run dev
```

Once you have made the changes check commitlint.config.js for how to commit your code. If the build is succesfully you will be able to push the code and make the pr. Follow the pull request.

Once you have made the changes check ```commitlint.config.js``` for how to commit your code. If the build is succesfully you will be able to push the code and make the pr. Follow the pull request.
15 changes: 8 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
}
}
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"cSpell.words": ["projectworkxp"]
}
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
experimental: {
swcPlugins: [['next-superjson-plugin', {}]],
},
};

module.exports = nextConfig;
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"eslint-config-next": "13.0.3",
"framer-motion": "^7.6.6",
"next": "13.0.3",
"next-superjson-plugin": "^0.4.9",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
Expand All @@ -43,7 +44,8 @@
"@commitlint/config-conventional": "^17.2.0",
"husky": "^8.0.2",
"only-pnpm": "^1.0.5",
"prettier": "^2.7.1"
"prettier": "^2.7.1",
"simple-zustand-devtools": "^1.1.0"
},
"packageManager": "[email protected]"
}
76 changes: 66 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b767e86

Please sign in to comment.