mirror of
https://github.com/webstudio-is/webstudio.git
synced 2025-03-14 09:57:02 +00:00
## Description 1. What is this PR about (link the issue and add a short description) ## Steps for reproduction 1. click button 2. expect xyz ## Code Review - [ ] hi @kof, I need you to do - conceptual review (architecture, feature-correctness) - detailed review (read every line) - test it on preview ## Before requesting a review - [ ] made a self-review - [ ] added inline comments where things may be not obvious (the "why", not "what") ## Before merging - [ ] tested locally and on preview environment (preview dev login: 5de6) - [ ] updated [test cases](https://github.com/webstudio-is/webstudio/blob/main/apps/builder/docs/test-cases.md) document - [ ] added tests - [ ] if any new env variables are added, added them to `.env` file
65 lines
908 B
Plaintext
65 lines
908 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
yarn.lock
|
|
|
|
# testing
|
|
coverage
|
|
|
|
# remix
|
|
build
|
|
_build
|
|
.cache
|
|
.vercel
|
|
.output
|
|
.netlify
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
!https/*.pem
|
|
/.idea
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# local env files
|
|
# .env
|
|
.env.development
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# data
|
|
/data
|
|
*.db
|
|
*.db-journal
|
|
|
|
# migrations
|
|
**/prisma/migrations/lockfile
|
|
**/prisma/migrations/*/client
|
|
|
|
# builds
|
|
packages/**/lib
|
|
generated
|
|
storybook-static
|
|
tsconfig.tsbuildinfo
|
|
|
|
# to save thunder https://marketplace.visualstudio.com/items?itemName=rangav.vscode-thunder-client files
|
|
.thunder
|
|
.env*.local
|
|
|
|
# wrangler builds
|
|
dist
|
|
|
|
# should be here otherwise if placed inside prisma-client pnpm deploy doesn't copy it
|
|
packages/prisma-client/src/__generated__
|
|
|
|
.temp |