Skip to content

Commit

Permalink
feat(watch): add a new page to list watch resources fetched from a No…
Browse files Browse the repository at this point in the history
…tion database (#9)
  • Loading branch information
gdarchen authored Jun 28, 2024
1 parent 700ad85 commit 73fa5e3
Show file tree
Hide file tree
Showing 35 changed files with 795 additions and 195 deletions.
1 change: 0 additions & 1 deletion .github/pull-request-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
## 🧠 Approach

<!-- Explain how these changes solve the problem. Give as much detail as possible. -->

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
version: 9

- name: Install dependencies
run: pnpm install

- name: Lint source code
run: pnpm lint
run: pnpm lint
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# misc
.DS_Store
*.pem
.eslintcache

# debug
npm-debug.log*
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm lint
pnpm lint-staged
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"plugins": ["prettier-plugin-tailwindcss"],
"tailwindFunctions": ["clsx", "tv"]
}
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@

<!-- TODO: uncomment when public -->
<!-- [![last commit](https://badgen.net/github/last-commit/gdarchen/portfolio?icon=https://simpleicons.now.sh/git/fff)](https://github.com/gdarchen/portfolio) -->

[![pnpm version](https://img.shields.io/badge/v9.4.0-F69220.svg?logo=pnpm&logoColor=white&label=pnpm)](https://pnpm.io/)
[![node version](https://img.shields.io/badge/%3E=20.0.0-3C873A.svg?logo=node.js&logoColor=white&label=node)](https://nodejs.org/en/)

</div>


<a href="https://gautier-darchen.vercel.app/"><img alt="Logo" src=".README/home.png" /></a>
<a href="https://gautier-darchen.vercel.app/"><img alt="Logo" src=".README/home.png" /></a>

## 👋 About this repo

Expand All @@ -48,7 +48,6 @@ Here is how to setup the project locally to contribute:

---


## 📦 Deploy

To deploy a new version, simply open a pull request again the `main` branch.
Expand Down
28 changes: 14 additions & 14 deletions commitlint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ const commitlint = {
2,
'always',
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"upgrade",
"wip",
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'upgrade',
'wip',
],
],
},
}

export default commitlint
export default commitlint
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@notionhq/client": "^2.2.15",
"@vercel/analytics": "^1.3.1",
"aos": "^2.3.4",
"clsx": "^2.1.1",
Expand All @@ -22,7 +23,6 @@
"react-icons": "^5.2.1",
"react-player": "^2.16.0",
"react-responsive": "^10.0.0",
"react-scroll": "^1.8.8",
"react-slick": "^0.30.2",
"serve": "^14.0.1",
"tailwind-scrollbar-hide": "^1.1.7",
Expand All @@ -44,12 +44,17 @@
"eslint-plugin-tailwindcss": "3.17.4",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"lint-staged": {
"*.ts*": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}
Loading

0 comments on commit 73fa5e3

Please sign in to comment.