Ignore client folder (#648)

This commit is contained in:
Alejandra 2024-03-08 15:26:29 +01:00 committed by GitHub
parent 88c162ba01
commit fba645a30a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
src/client/

View File

@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier --write ./src/**/*.{ts,tsx,js,jsx,json,md}",
"format": "prettier --write ./src/**/*.{ts,tsx,js,jsx,json,md} --ignore-path .prettierignore",
"preview": "vite preview",
"generate-client": "openapi --input ./openapi.json --useOptions --useUnionTypes --output ./src/client --client axios --exportSchemas true"
},