Skip to content

Commit

Permalink
💚 Release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Nov 30, 2023
1 parent 1d4e880 commit b3c1356
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .husky/prepare-commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# gitmoji as a commit hook
if npx -v >&/dev/null
then
exec < /dev/tty
npx -c "gitmoji --hook $1 $2"
else
exec < /dev/tty
gitmoji --hook $1 $2
fi
3 changes: 2 additions & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"react-router-dom": "^6.20.0",
"recharts": "^2.10.1",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7"
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ const props: UploadProps = {
},
};

const DragDrop = ({children}) => (
const DragDrop = () => (
<Dragger {...props}>
<p className="ant-upload-drag-icon">
</p>
{children}
</Dragger>
);

Expand Down
7 changes: 7 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit b3c1356

Please sign in to comment.