From f54d597563fdf119219df84d48a53d29a6cfecaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AB=E3=82=B3=E3=83=A1?= Date: Tue, 17 Dec 2024 10:24:53 +0900 Subject: [PATCH] examples: update gitignore files for parity for yarn recommendations (#71956) ## What? Update examples `.gitignore` files for parity with [Yarn's official recommendations](https://v3.yarnpkg.com/getting-started/qa#which-files-should-be-gitignored), accounting for Yarn's modern Plug-n-Play functionality. ## Why? New projects initialized with `create-next-app` presently add various extraneous files from the Yarn cache to the initial commit. This is most notable in the case of the Next SWC binary, which may exceed 100M in some environments (empirically, 64-bit Darwin and WSL2 Ubuntu, and very probably other unix/linux environments), and prevent users from pushing their new projects to free GitHub repositories without rewriting the commit history to exclude the extraneous files, or unnecessarily setting up Git LFS to include them. ## How? I have errored on the side of exclusion to enable users to push their CNA projects to GitHub as-is and for parity with other package managers, while still providing the opportunity to opt in to additional functionality provided by modern Yarn. These changes follow the recommendations for **non**-[Zero-Install](https://yarnpkg.com/features/caching#zero-installs) configurations, as Zero-Install functionality is an extension on top of the base package manager experience, and may necessitate additional configuration and present additional complications for unsuspecting users, so I think it's best left up to the user to opt-in. On account of the majority of publicly available Next.js-based projects comprising general consumer-facing websites, it is my belief that the majority of Next projects would not benefit from Yarn's Zero-Install functionality, and that explicitly facilitating it by default would break status quo with all other non-Yarn CNA projects. Contrary to the example `.gitignore`s provided by Yarn, I've excluded the `.yarn/sdks` directory as it contains IDE-specific tooling; I feel it would be presumptuous for an environmentally-agnostic tool to target and provide package-manager-specific tooling for specific editors. This too should be left to the user to opt-in to and provide for their project if they deem necessary. I have retained the current `.gitignore`'s exclusion of the `/.pnp` directory for backwards compatibility with older versions of Yarn (the files therein have since been reallocated to the `.yarn` directory addressed by these changes, but I am not clear on when that delineation occurred or the prevalence of Yarn installations which depend on the former convention). Maintaining the exclusion here, in the worst case, implies additional downloads (on an order of magnitude merely similar to using npm from the outset) rather than failure. CC: @samcx ### Adding or Updating Examples - [x] The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md - [x] Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md Co-authored-by: Sam Ko --- examples/active-class-name/.gitignore | 8 ++++++-- examples/amp/.gitignore | 8 ++++++-- examples/analyze-bundles/.gitignore | 8 ++++++-- .../.gitignore | 8 ++++++-- .../api-routes-apollo-server-and-client/.gitignore | 8 ++++++-- examples/api-routes-apollo-server/.gitignore | 8 ++++++-- examples/api-routes-cors/.gitignore | 8 ++++++-- examples/api-routes-graphql/.gitignore | 8 ++++++-- examples/api-routes-middleware/.gitignore | 8 ++++++-- examples/api-routes-rate-limit/.gitignore | 8 ++++++-- examples/api-routes-rest/.gitignore | 8 ++++++-- examples/app-dir-mdx/.gitignore | 8 ++++++-- examples/auth-with-stytch/.gitignore | 8 ++++++-- examples/auth/.gitignore | 7 ++++++- examples/auth0/.gitignore | 8 ++++++-- examples/basic-css/.gitignore | 8 ++++++-- examples/basic-export/.gitignore | 8 ++++++-- examples/blog-starter/.gitignore | 8 ++++++-- examples/blog-with-comment/.gitignore | 8 ++++++-- examples/blog/.gitignore | 8 ++++++-- examples/cache-handler-redis/.gitignore | 8 ++++++-- examples/catch-all-routes/.gitignore | 8 ++++++-- examples/cloudflare-turnstile/.gitignore | 8 ++++++-- examples/cms-agilitycms/.gitignore | 8 ++++++-- examples/cms-builder-io/.gitignore | 8 ++++++-- examples/cms-buttercms/.gitignore | 8 ++++++-- examples/cms-contentful/.gitignore | 8 ++++++-- examples/cms-cosmic/.gitignore | 8 ++++++-- examples/cms-datocms/.gitignore | 8 ++++++-- examples/cms-dotcms/.gitignore | 8 ++++++-- examples/cms-drupal/.gitignore | 8 ++++++-- examples/cms-enterspeed/.gitignore | 8 ++++++-- examples/cms-ghost/.gitignore | 8 ++++++-- examples/cms-graphcms/.gitignore | 8 ++++++-- examples/cms-keystonejs-embedded/.gitignore | 8 ++++++-- examples/cms-kontent-ai/.gitignore | 8 ++++++-- examples/cms-makeswift/.gitignore | 8 ++++++-- examples/cms-plasmic/.gitignore | 8 ++++++-- examples/cms-prepr/.gitignore | 8 ++++++-- examples/cms-prismic/.gitignore | 8 ++++++-- examples/cms-sanity/.gitignore | 8 ++++++-- examples/cms-sitefinity/.gitignore | 8 ++++++-- examples/cms-storyblok/.gitignore | 8 ++++++-- examples/cms-takeshape/.gitignore | 8 ++++++-- examples/cms-tina/.gitignore | 8 ++++++-- examples/cms-umbraco-heartcore/.gitignore | 8 ++++++-- examples/cms-umbraco/.gitignore | 7 ++++++- examples/cms-webiny/.gitignore | 8 ++++++-- examples/cms-wordpress/.gitignore | 8 ++++++-- examples/convex/.gitignore | 8 ++++++-- examples/custom-routes-proxying/.gitignore | 8 ++++++-- examples/custom-server/.gitignore | 8 ++++++-- examples/dynamic-routing/.gitignore | 8 ++++++-- examples/environment-variables/.gitignore | 8 ++++++-- examples/github-pages/.gitignore | 8 ++++++-- examples/head-elements/.gitignore | 8 ++++++-- examples/headers/.gitignore | 8 ++++++-- examples/hello-world/.gitignore | 8 ++++++-- examples/i18n-routing-pages/.gitignore | 8 ++++++-- examples/i18n-routing/.gitignore | 8 ++++++-- examples/image-component/.gitignore | 8 ++++++-- examples/image-legacy-component/.gitignore | 8 ++++++-- examples/inngest/.gitignore | 7 ++++++- examples/layout-component/.gitignore | 8 ++++++-- examples/markdoc/.gitignore | 8 ++++++-- examples/middleware-matcher/.gitignore | 8 ++++++-- examples/middleware/.gitignore | 8 ++++++-- examples/nested-components/.gitignore | 8 ++++++-- examples/next-css/.gitignore | 8 ++++++-- examples/next-forms/.gitignore | 8 ++++++-- examples/panda-css/.gitignore | 8 ++++++-- examples/progressive-web-app/.gitignore | 8 ++++++-- examples/radix-ui/.gitignore | 8 ++++++-- examples/react-remove-properties/.gitignore | 8 ++++++-- examples/redirects/.gitignore | 8 ++++++-- examples/remove-console/.gitignore | 8 ++++++-- examples/reproduction-template-pages/.gitignore | 8 ++++++-- examples/reproduction-template/.gitignore | 10 +++++++--- examples/rewrites/.gitignore | 8 ++++++-- examples/script-component/.gitignore | 8 ++++++-- examples/server-actions-upload/.gitignore | 8 ++++++-- examples/ssr-caching/.gitignore | 8 ++++++-- examples/svg-components/.gitignore | 8 ++++++-- examples/with-ably/.gitignore | 8 ++++++-- examples/with-absolute-imports/.gitignore | 8 ++++++-- examples/with-algolia-react-instantsearch/.gitignore | 8 ++++++-- examples/with-ant-design/.gitignore | 8 ++++++-- examples/with-apivideo/.gitignore | 8 ++++++-- examples/with-apollo-and-redux/.gitignore | 8 ++++++-- examples/with-apollo/.gitignore | 8 ++++++-- examples/with-axiom/.gitignore | 8 ++++++-- examples/with-azure-cosmos/.gitignore | 8 ++++++-- examples/with-babel-macros/.gitignore | 8 ++++++-- examples/with-chakra-ui/.gitignore | 8 ++++++-- examples/with-clerk/.gitignore | 8 ++++++-- examples/with-cloudinary/.gitignore | 8 ++++++-- examples/with-compiled-css/.gitignore | 8 ++++++-- examples/with-contentlayer/.gitignore | 8 ++++++-- examples/with-cookies-next/.gitignore | 8 ++++++-- examples/with-couchbase/.gitignore | 8 ++++++-- examples/with-custom-babel-config/.gitignore | 8 ++++++-- examples/with-cxs/.gitignore | 8 ++++++-- examples/with-cypress/.gitignore | 8 ++++++-- examples/with-docker-compose/.gitignore | 8 ++++++-- examples/with-docker-compose/next-app/.gitignore | 8 ++++++-- examples/with-docker-multi-env/.gitignore | 8 ++++++-- examples/with-docker/.gitignore | 8 ++++++-- examples/with-dynamic-import/.gitignore | 8 ++++++-- examples/with-edgedb/.gitignore | 8 ++++++-- examples/with-elasticsearch/.gitignore | 8 ++++++-- examples/with-electron-typescript/.gitignore | 8 ++++++-- examples/with-electron/.gitignore | 8 ++++++-- examples/with-emotion/.gitignore | 8 ++++++-- examples/with-eslint/.gitignore | 8 ++++++-- examples/with-expo-typescript/.gitignore | 8 ++++++-- examples/with-facebook-pixel/.gitignore | 8 ++++++-- examples/with-fauna/.gitignore | 8 ++++++-- examples/with-fela/.gitignore | 8 ++++++-- examples/with-filbert/.gitignore | 8 ++++++-- examples/with-fingerprintjs-pro/.gitignore | 8 ++++++-- examples/with-firebase-cloud-messaging/.gitignore | 8 ++++++-- examples/with-firebase-hosting/.gitignore | 8 ++++++-- examples/with-firebase/.gitignore | 8 ++++++-- examples/with-flow/.gitignore | 8 ++++++-- examples/with-formspree/.gitignore | 8 ++++++-- examples/with-framer-motion/.gitignore | 8 ++++++-- examples/with-goober/.gitignore | 8 ++++++-- examples/with-google-analytics/.gitignore | 8 ++++++-- examples/with-google-maps-embed/.gitignore | 8 ++++++-- examples/with-google-tag-manager/.gitignore | 8 ++++++-- examples/with-grafbase/.gitignore | 8 ++++++-- examples/with-graphql-gateway/.gitignore | 8 ++++++-- examples/with-graphql-hooks/.gitignore | 8 ++++++-- examples/with-graphql-react/.gitignore | 8 ++++++-- examples/with-gsap/.gitignore | 8 ++++++-- examples/with-hls-js/.gitignore | 8 ++++++-- examples/with-http2/.gitignore | 8 ++++++-- examples/with-i18n-next-intl/.gitignore | 8 ++++++-- examples/with-i18n-rosetta/.gitignore | 8 ++++++-- examples/with-iron-session/.gitignore | 8 ++++++-- examples/with-jest-babel/.gitignore | 8 ++++++-- examples/with-jest/.gitignore | 8 ++++++-- examples/with-joi/.gitignore | 8 ++++++-- examples/with-jotai/.gitignore | 8 ++++++-- examples/with-kea/.gitignore | 8 ++++++-- examples/with-knex/.gitignore | 8 ++++++-- examples/with-lingui/.gitignore | 8 ++++++-- examples/with-magic/.gitignore | 8 ++++++-- examples/with-mantine/.gitignore | 8 ++++++-- examples/with-mdbreact/.gitignore | 8 ++++++-- examples/with-mdx-remote/.gitignore | 8 ++++++-- examples/with-mdx/.gitignore | 8 ++++++-- examples/with-meilisearch/.gitignore | 7 ++++++- examples/with-mobx-state-tree/.gitignore | 8 ++++++-- examples/with-mobx/.gitignore | 8 ++++++-- examples/with-mocha/.gitignore | 8 ++++++-- examples/with-mongodb-mongoose/.gitignore | 8 ++++++-- examples/with-mongodb/.gitignore | 8 ++++++-- examples/with-mqtt-js/.gitignore | 8 ++++++-- examples/with-msw/.gitignore | 8 ++++++-- examples/with-mux-video/.gitignore | 8 ++++++-- examples/with-mysql/.gitignore | 8 ++++++-- examples/with-neo4j/.gitignore | 8 ++++++-- examples/with-next-page-transitions/.gitignore | 8 ++++++-- examples/with-next-seo/.gitignore | 8 ++++++-- examples/with-next-sitemap/.gitignore | 8 ++++++-- examples/with-next-translate/.gitignore | 8 ++++++-- examples/with-next-ui/.gitignore | 8 ++++++-- examples/with-nhost-auth-realtime-graphql/.gitignore | 8 ++++++-- examples/with-opentelemetry/.gitignore | 8 ++++++-- examples/with-orbit-components/.gitignore | 8 ++++++-- examples/with-overmind/.gitignore | 8 ++++++-- examples/with-particles/.gitignore | 8 ++++++-- examples/with-passport-and-next-connect/.gitignore | 8 ++++++-- examples/with-passport/.gitignore | 8 ++++++-- examples/with-paste-typescript/.gitignore | 8 ++++++-- examples/with-plausible/.gitignore | 8 ++++++-- examples/with-playwright/.gitignore | 8 ++++++-- examples/with-polyfills/.gitignore | 8 ++++++-- examples/with-portals-ssr/.gitignore | 8 ++++++-- examples/with-portals/.gitignore | 8 ++++++-- examples/with-prefetching/.gitignore | 8 ++++++-- examples/with-quill-js/.gitignore | 8 ++++++-- examples/with-rbx-bulma-pro/.gitignore | 8 ++++++-- examples/with-react-bootstrap/.gitignore | 8 ++++++-- examples/with-react-ga4/.gitignore | 8 ++++++-- examples/with-react-hook-form/.gitignore | 8 ++++++-- examples/with-react-intl/.gitignore | 8 ++++++-- examples/with-react-jss/.gitignore | 8 ++++++-- examples/with-react-md-typescript/.gitignore | 8 ++++++-- examples/with-react-multi-carousel/.gitignore | 8 ++++++-- examples/with-react-native-web/.gitignore | 8 ++++++-- examples/with-react-toolbox/.gitignore | 8 ++++++-- examples/with-reactstrap/.gitignore | 8 ++++++-- examples/with-realm-web/.gitignore | 8 ++++++-- examples/with-rebass/.gitignore | 8 ++++++-- examples/with-recoil/.gitignore | 8 ++++++-- examples/with-redis/.gitignore | 7 ++++++- examples/with-redux/.gitignore | 8 ++++++-- examples/with-reflexjs/.gitignore | 8 ++++++-- examples/with-reflux/.gitignore | 8 ++++++-- examples/with-relay-modern/.gitignore | 8 ++++++-- examples/with-rematch/.gitignore | 8 ++++++-- examples/with-route-as-modal/.gitignore | 8 ++++++-- .../with-segment-analytics-pages-router/.gitignore | 8 ++++++-- examples/with-segment-analytics/.gitignore | 8 ++++++-- examples/with-service-worker/.gitignore | 8 ++++++-- examples/with-sfcc/.gitignore | 8 ++++++-- examples/with-shallow-routing/.gitignore | 8 ++++++-- examples/with-sitemap/.gitignore | 8 ++++++-- examples/with-slate/.gitignore | 8 ++++++-- examples/with-static-export/.gitignore | 8 ++++++-- examples/with-stencil/.gitignore | 8 ++++++-- examples/with-stitches/.gitignore | 8 ++++++-- examples/with-storybook/.gitignore | 8 ++++++-- examples/with-strict-csp/.gitignore | 8 ++++++-- examples/with-stripe-typescript/.gitignore | 8 ++++++-- examples/with-styled-components-rtl/.gitignore | 8 ++++++-- examples/with-styled-components/.gitignore | 8 ++++++-- examples/with-styled-jsx/.gitignore | 8 ++++++-- examples/with-styletron/.gitignore | 8 ++++++-- examples/with-supabase/.gitignore | 8 ++++++-- examples/with-supertokens/.gitignore | 7 ++++++- examples/with-temporal/.gitignore | 8 ++++++-- examples/with-three-js/.gitignore | 8 ++++++-- examples/with-tigris/.gitignore | 8 ++++++-- examples/with-turbopack-loaders/.gitignore | 8 ++++++-- examples/with-turbopack/.gitignore | 8 ++++++-- examples/with-turso/.gitignore | 8 ++++++-- examples/with-typescript-graphql/.gitignore | 8 ++++++-- examples/with-typescript-types/.gitignore | 8 ++++++-- examples/with-typescript/.gitignore | 8 ++++++-- examples/with-unsplash/.gitignore | 8 ++++++-- examples/with-urql/.gitignore | 8 ++++++-- examples/with-userbase/.gitignore | 8 ++++++-- examples/with-vanilla-extract/.gitignore | 8 ++++++-- examples/with-videojs/.gitignore | 8 ++++++-- examples/with-vitest/.gitignore | 8 ++++++-- examples/with-web-worker/.gitignore | 8 ++++++-- examples/with-webassembly/.gitignore | 8 ++++++-- examples/with-windicss/.gitignore | 8 ++++++-- examples/with-xstate/.gitignore | 8 ++++++-- examples/with-yarn-workspaces/.gitignore | 8 ++++++-- examples/with-yoga/.gitignore | 8 ++++++-- examples/with-youtube-embed/.gitignore | 8 ++++++-- examples/with-zones/.gitignore | 8 ++++++-- examples/with-zustand/.gitignore | 8 ++++++-- .../test/with-mongodb-mongoose/.gitignore | 7 ++++++- 248 files changed, 1489 insertions(+), 490 deletions(-) diff --git a/examples/active-class-name/.gitignore b/examples/active-class-name/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/active-class-name/.gitignore +++ b/examples/active-class-name/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/amp/.gitignore b/examples/amp/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/amp/.gitignore +++ b/examples/amp/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/analyze-bundles/.gitignore b/examples/analyze-bundles/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/analyze-bundles/.gitignore +++ b/examples/analyze-bundles/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-apollo-server-and-client-auth/.gitignore b/examples/api-routes-apollo-server-and-client-auth/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-apollo-server-and-client-auth/.gitignore +++ b/examples/api-routes-apollo-server-and-client-auth/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-apollo-server-and-client/.gitignore b/examples/api-routes-apollo-server-and-client/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-apollo-server-and-client/.gitignore +++ b/examples/api-routes-apollo-server-and-client/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-apollo-server/.gitignore b/examples/api-routes-apollo-server/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-apollo-server/.gitignore +++ b/examples/api-routes-apollo-server/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-cors/.gitignore b/examples/api-routes-cors/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-cors/.gitignore +++ b/examples/api-routes-cors/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-graphql/.gitignore b/examples/api-routes-graphql/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-graphql/.gitignore +++ b/examples/api-routes-graphql/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-middleware/.gitignore b/examples/api-routes-middleware/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-middleware/.gitignore +++ b/examples/api-routes-middleware/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-rate-limit/.gitignore b/examples/api-routes-rate-limit/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-rate-limit/.gitignore +++ b/examples/api-routes-rate-limit/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/api-routes-rest/.gitignore b/examples/api-routes-rest/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/api-routes-rest/.gitignore +++ b/examples/api-routes-rest/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/app-dir-mdx/.gitignore b/examples/app-dir-mdx/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/app-dir-mdx/.gitignore +++ b/examples/app-dir-mdx/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/auth-with-stytch/.gitignore b/examples/auth-with-stytch/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/auth-with-stytch/.gitignore +++ b/examples/auth-with-stytch/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/auth/.gitignore b/examples/auth/.gitignore index 8f322f0d8f495..8777267507c0e 100644 --- a/examples/auth/.gitignore +++ b/examples/auth/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/auth0/.gitignore b/examples/auth0/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/auth0/.gitignore +++ b/examples/auth0/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/basic-css/.gitignore b/examples/basic-css/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/basic-css/.gitignore +++ b/examples/basic-css/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/basic-export/.gitignore b/examples/basic-export/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/basic-export/.gitignore +++ b/examples/basic-export/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/blog-starter/.gitignore b/examples/blog-starter/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/blog-starter/.gitignore +++ b/examples/blog-starter/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/blog-with-comment/.gitignore b/examples/blog-with-comment/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/blog-with-comment/.gitignore +++ b/examples/blog-with-comment/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/blog/.gitignore b/examples/blog/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/blog/.gitignore +++ b/examples/blog/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cache-handler-redis/.gitignore b/examples/cache-handler-redis/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cache-handler-redis/.gitignore +++ b/examples/cache-handler-redis/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/catch-all-routes/.gitignore b/examples/catch-all-routes/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/catch-all-routes/.gitignore +++ b/examples/catch-all-routes/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cloudflare-turnstile/.gitignore b/examples/cloudflare-turnstile/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cloudflare-turnstile/.gitignore +++ b/examples/cloudflare-turnstile/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-agilitycms/.gitignore b/examples/cms-agilitycms/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-agilitycms/.gitignore +++ b/examples/cms-agilitycms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-builder-io/.gitignore b/examples/cms-builder-io/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-builder-io/.gitignore +++ b/examples/cms-builder-io/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-buttercms/.gitignore b/examples/cms-buttercms/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-buttercms/.gitignore +++ b/examples/cms-buttercms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-contentful/.gitignore b/examples/cms-contentful/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-contentful/.gitignore +++ b/examples/cms-contentful/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-cosmic/.gitignore b/examples/cms-cosmic/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-cosmic/.gitignore +++ b/examples/cms-cosmic/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-datocms/.gitignore b/examples/cms-datocms/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-datocms/.gitignore +++ b/examples/cms-datocms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-dotcms/.gitignore b/examples/cms-dotcms/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-dotcms/.gitignore +++ b/examples/cms-dotcms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-drupal/.gitignore b/examples/cms-drupal/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-drupal/.gitignore +++ b/examples/cms-drupal/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-enterspeed/.gitignore b/examples/cms-enterspeed/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-enterspeed/.gitignore +++ b/examples/cms-enterspeed/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-ghost/.gitignore b/examples/cms-ghost/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-ghost/.gitignore +++ b/examples/cms-ghost/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-graphcms/.gitignore b/examples/cms-graphcms/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-graphcms/.gitignore +++ b/examples/cms-graphcms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-keystonejs-embedded/.gitignore b/examples/cms-keystonejs-embedded/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-keystonejs-embedded/.gitignore +++ b/examples/cms-keystonejs-embedded/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-kontent-ai/.gitignore b/examples/cms-kontent-ai/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-kontent-ai/.gitignore +++ b/examples/cms-kontent-ai/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-makeswift/.gitignore b/examples/cms-makeswift/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-makeswift/.gitignore +++ b/examples/cms-makeswift/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-plasmic/.gitignore b/examples/cms-plasmic/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-plasmic/.gitignore +++ b/examples/cms-plasmic/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-prepr/.gitignore b/examples/cms-prepr/.gitignore index 653085865dd80..e2543eeec9640 100644 --- a/examples/cms-prepr/.gitignore +++ b/examples/cms-prepr/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-prismic/.gitignore b/examples/cms-prismic/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-prismic/.gitignore +++ b/examples/cms-prismic/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-sanity/.gitignore b/examples/cms-sanity/.gitignore index d449ea2fa959f..83b42e1bc5d44 100644 --- a/examples/cms-sanity/.gitignore +++ b/examples/cms-sanity/.gitignore @@ -4,8 +4,12 @@ /node_modules /studio/node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-sitefinity/.gitignore b/examples/cms-sitefinity/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-sitefinity/.gitignore +++ b/examples/cms-sitefinity/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-storyblok/.gitignore b/examples/cms-storyblok/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-storyblok/.gitignore +++ b/examples/cms-storyblok/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-takeshape/.gitignore b/examples/cms-takeshape/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-takeshape/.gitignore +++ b/examples/cms-takeshape/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-tina/.gitignore b/examples/cms-tina/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-tina/.gitignore +++ b/examples/cms-tina/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-umbraco-heartcore/.gitignore b/examples/cms-umbraco-heartcore/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-umbraco-heartcore/.gitignore +++ b/examples/cms-umbraco-heartcore/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-umbraco/.gitignore b/examples/cms-umbraco/.gitignore index 8f322f0d8f495..8777267507c0e 100644 --- a/examples/cms-umbraco/.gitignore +++ b/examples/cms-umbraco/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-webiny/.gitignore b/examples/cms-webiny/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/cms-webiny/.gitignore +++ b/examples/cms-webiny/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/cms-wordpress/.gitignore b/examples/cms-wordpress/.gitignore index 7d4efb57e699f..913053c0f4d86 100644 --- a/examples/cms-wordpress/.gitignore +++ b/examples/cms-wordpress/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/convex/.gitignore b/examples/convex/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/convex/.gitignore +++ b/examples/convex/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/custom-routes-proxying/.gitignore b/examples/custom-routes-proxying/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/custom-routes-proxying/.gitignore +++ b/examples/custom-routes-proxying/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/custom-server/.gitignore b/examples/custom-server/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/custom-server/.gitignore +++ b/examples/custom-server/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/dynamic-routing/.gitignore b/examples/dynamic-routing/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/dynamic-routing/.gitignore +++ b/examples/dynamic-routing/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/environment-variables/.gitignore b/examples/environment-variables/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/environment-variables/.gitignore +++ b/examples/environment-variables/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/github-pages/.gitignore b/examples/github-pages/.gitignore index 35cb4825c0437..a418d47300420 100644 --- a/examples/github-pages/.gitignore +++ b/examples/github-pages/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/head-elements/.gitignore b/examples/head-elements/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/head-elements/.gitignore +++ b/examples/head-elements/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/headers/.gitignore b/examples/headers/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/headers/.gitignore +++ b/examples/headers/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/hello-world/.gitignore b/examples/hello-world/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/hello-world/.gitignore +++ b/examples/hello-world/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/i18n-routing-pages/.gitignore b/examples/i18n-routing-pages/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/i18n-routing-pages/.gitignore +++ b/examples/i18n-routing-pages/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/i18n-routing/.gitignore b/examples/i18n-routing/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/i18n-routing/.gitignore +++ b/examples/i18n-routing/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/image-component/.gitignore b/examples/image-component/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/image-component/.gitignore +++ b/examples/image-component/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/image-legacy-component/.gitignore b/examples/image-legacy-component/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/image-legacy-component/.gitignore +++ b/examples/image-legacy-component/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/inngest/.gitignore b/examples/inngest/.gitignore index 8f322f0d8f495..8777267507c0e 100755 --- a/examples/inngest/.gitignore +++ b/examples/inngest/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/layout-component/.gitignore b/examples/layout-component/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/layout-component/.gitignore +++ b/examples/layout-component/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/markdoc/.gitignore b/examples/markdoc/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/markdoc/.gitignore +++ b/examples/markdoc/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/middleware-matcher/.gitignore b/examples/middleware-matcher/.gitignore index fd3dbb571a12a..8777267507c0e 100755 --- a/examples/middleware-matcher/.gitignore +++ b/examples/middleware-matcher/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/middleware/.gitignore b/examples/middleware/.gitignore index fd3dbb571a12a..8777267507c0e 100755 --- a/examples/middleware/.gitignore +++ b/examples/middleware/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/nested-components/.gitignore b/examples/nested-components/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/nested-components/.gitignore +++ b/examples/nested-components/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/next-css/.gitignore b/examples/next-css/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/next-css/.gitignore +++ b/examples/next-css/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/next-forms/.gitignore b/examples/next-forms/.gitignore index 1f8bd8e654d76..420fb4aebeb14 100644 --- a/examples/next-forms/.gitignore +++ b/examples/next-forms/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/panda-css/.gitignore b/examples/panda-css/.gitignore index 5402c47d2251e..be7d1cabde4fc 100644 --- a/examples/panda-css/.gitignore +++ b/examples/panda-css/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/progressive-web-app/.gitignore b/examples/progressive-web-app/.gitignore index b1111ab3b592a..4a3754f3558a9 100644 --- a/examples/progressive-web-app/.gitignore +++ b/examples/progressive-web-app/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/radix-ui/.gitignore b/examples/radix-ui/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/radix-ui/.gitignore +++ b/examples/radix-ui/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/react-remove-properties/.gitignore b/examples/react-remove-properties/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/react-remove-properties/.gitignore +++ b/examples/react-remove-properties/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/redirects/.gitignore b/examples/redirects/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/redirects/.gitignore +++ b/examples/redirects/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/remove-console/.gitignore b/examples/remove-console/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/remove-console/.gitignore +++ b/examples/remove-console/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/reproduction-template-pages/.gitignore b/examples/reproduction-template-pages/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/reproduction-template-pages/.gitignore +++ b/examples/reproduction-template-pages/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/reproduction-template/.gitignore b/examples/reproduction-template/.gitignore index fd3dbb571a12a..e413cdb9e6f43 100644 --- a/examples/reproduction-template/.gitignore +++ b/examples/reproduction-template/.gitignore @@ -2,9 +2,13 @@ # dependencies /node_modules -/.pnp -.pnp.js -.yarn/install-state.gz +/.pnp0 +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/rewrites/.gitignore b/examples/rewrites/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/rewrites/.gitignore +++ b/examples/rewrites/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/script-component/.gitignore b/examples/script-component/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/script-component/.gitignore +++ b/examples/script-component/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/server-actions-upload/.gitignore b/examples/server-actions-upload/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/server-actions-upload/.gitignore +++ b/examples/server-actions-upload/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/ssr-caching/.gitignore b/examples/ssr-caching/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/ssr-caching/.gitignore +++ b/examples/ssr-caching/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/svg-components/.gitignore b/examples/svg-components/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/svg-components/.gitignore +++ b/examples/svg-components/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-ably/.gitignore b/examples/with-ably/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-ably/.gitignore +++ b/examples/with-ably/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-absolute-imports/.gitignore b/examples/with-absolute-imports/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-absolute-imports/.gitignore +++ b/examples/with-absolute-imports/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-algolia-react-instantsearch/.gitignore b/examples/with-algolia-react-instantsearch/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-algolia-react-instantsearch/.gitignore +++ b/examples/with-algolia-react-instantsearch/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-ant-design/.gitignore b/examples/with-ant-design/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-ant-design/.gitignore +++ b/examples/with-ant-design/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-apivideo/.gitignore b/examples/with-apivideo/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-apivideo/.gitignore +++ b/examples/with-apivideo/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-apollo-and-redux/.gitignore b/examples/with-apollo-and-redux/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-apollo-and-redux/.gitignore +++ b/examples/with-apollo-and-redux/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-apollo/.gitignore b/examples/with-apollo/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-apollo/.gitignore +++ b/examples/with-apollo/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-axiom/.gitignore b/examples/with-axiom/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-axiom/.gitignore +++ b/examples/with-axiom/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-azure-cosmos/.gitignore b/examples/with-azure-cosmos/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-azure-cosmos/.gitignore +++ b/examples/with-azure-cosmos/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-babel-macros/.gitignore b/examples/with-babel-macros/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-babel-macros/.gitignore +++ b/examples/with-babel-macros/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-chakra-ui/.gitignore b/examples/with-chakra-ui/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-chakra-ui/.gitignore +++ b/examples/with-chakra-ui/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-clerk/.gitignore b/examples/with-clerk/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-clerk/.gitignore +++ b/examples/with-clerk/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-cloudinary/.gitignore b/examples/with-cloudinary/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-cloudinary/.gitignore +++ b/examples/with-cloudinary/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-compiled-css/.gitignore b/examples/with-compiled-css/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-compiled-css/.gitignore +++ b/examples/with-compiled-css/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-contentlayer/.gitignore b/examples/with-contentlayer/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-contentlayer/.gitignore +++ b/examples/with-contentlayer/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-cookies-next/.gitignore b/examples/with-cookies-next/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-cookies-next/.gitignore +++ b/examples/with-cookies-next/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-couchbase/.gitignore b/examples/with-couchbase/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-couchbase/.gitignore +++ b/examples/with-couchbase/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-custom-babel-config/.gitignore b/examples/with-custom-babel-config/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-custom-babel-config/.gitignore +++ b/examples/with-custom-babel-config/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-cxs/.gitignore b/examples/with-cxs/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-cxs/.gitignore +++ b/examples/with-cxs/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-cypress/.gitignore b/examples/with-cypress/.gitignore index 5b4e0506dd0d1..6364fef9d1909 100644 --- a/examples/with-cypress/.gitignore +++ b/examples/with-cypress/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-docker-compose/.gitignore b/examples/with-docker-compose/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-docker-compose/.gitignore +++ b/examples/with-docker-compose/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-docker-compose/next-app/.gitignore b/examples/with-docker-compose/next-app/.gitignore index 083967fec71ac..ab0b6bd36d513 100644 --- a/examples/with-docker-compose/next-app/.gitignore +++ b/examples/with-docker-compose/next-app/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-docker-multi-env/.gitignore b/examples/with-docker-multi-env/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-docker-multi-env/.gitignore +++ b/examples/with-docker-multi-env/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-docker/.gitignore b/examples/with-docker/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-docker/.gitignore +++ b/examples/with-docker/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-dynamic-import/.gitignore b/examples/with-dynamic-import/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-dynamic-import/.gitignore +++ b/examples/with-dynamic-import/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-edgedb/.gitignore b/examples/with-edgedb/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-edgedb/.gitignore +++ b/examples/with-edgedb/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-elasticsearch/.gitignore b/examples/with-elasticsearch/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-elasticsearch/.gitignore +++ b/examples/with-elasticsearch/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-electron-typescript/.gitignore b/examples/with-electron-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-electron-typescript/.gitignore +++ b/examples/with-electron-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-electron/.gitignore b/examples/with-electron/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-electron/.gitignore +++ b/examples/with-electron/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-emotion/.gitignore b/examples/with-emotion/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-emotion/.gitignore +++ b/examples/with-emotion/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-eslint/.gitignore b/examples/with-eslint/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-eslint/.gitignore +++ b/examples/with-eslint/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-expo-typescript/.gitignore b/examples/with-expo-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-expo-typescript/.gitignore +++ b/examples/with-expo-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-facebook-pixel/.gitignore b/examples/with-facebook-pixel/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-facebook-pixel/.gitignore +++ b/examples/with-facebook-pixel/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-fauna/.gitignore b/examples/with-fauna/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-fauna/.gitignore +++ b/examples/with-fauna/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-fela/.gitignore b/examples/with-fela/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-fela/.gitignore +++ b/examples/with-fela/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-filbert/.gitignore b/examples/with-filbert/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-filbert/.gitignore +++ b/examples/with-filbert/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-fingerprintjs-pro/.gitignore b/examples/with-fingerprintjs-pro/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-fingerprintjs-pro/.gitignore +++ b/examples/with-fingerprintjs-pro/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-firebase-cloud-messaging/.gitignore b/examples/with-firebase-cloud-messaging/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-firebase-cloud-messaging/.gitignore +++ b/examples/with-firebase-cloud-messaging/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-firebase-hosting/.gitignore b/examples/with-firebase-hosting/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-firebase-hosting/.gitignore +++ b/examples/with-firebase-hosting/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-firebase/.gitignore b/examples/with-firebase/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-firebase/.gitignore +++ b/examples/with-firebase/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-flow/.gitignore b/examples/with-flow/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-flow/.gitignore +++ b/examples/with-flow/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-formspree/.gitignore b/examples/with-formspree/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-formspree/.gitignore +++ b/examples/with-formspree/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-framer-motion/.gitignore b/examples/with-framer-motion/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-framer-motion/.gitignore +++ b/examples/with-framer-motion/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-goober/.gitignore b/examples/with-goober/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-goober/.gitignore +++ b/examples/with-goober/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-google-analytics/.gitignore b/examples/with-google-analytics/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-google-analytics/.gitignore +++ b/examples/with-google-analytics/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-google-maps-embed/.gitignore b/examples/with-google-maps-embed/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-google-maps-embed/.gitignore +++ b/examples/with-google-maps-embed/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-google-tag-manager/.gitignore b/examples/with-google-tag-manager/.gitignore index 0563835d3494b..f02f8f1ac4821 100644 --- a/examples/with-google-tag-manager/.gitignore +++ b/examples/with-google-tag-manager/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-grafbase/.gitignore b/examples/with-grafbase/.gitignore index 162ceb0fbf629..7796d2f85f8cf 100644 --- a/examples/with-grafbase/.gitignore +++ b/examples/with-grafbase/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-graphql-gateway/.gitignore b/examples/with-graphql-gateway/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-graphql-gateway/.gitignore +++ b/examples/with-graphql-gateway/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-graphql-hooks/.gitignore b/examples/with-graphql-hooks/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-graphql-hooks/.gitignore +++ b/examples/with-graphql-hooks/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-graphql-react/.gitignore b/examples/with-graphql-react/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-graphql-react/.gitignore +++ b/examples/with-graphql-react/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-gsap/.gitignore b/examples/with-gsap/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-gsap/.gitignore +++ b/examples/with-gsap/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-hls-js/.gitignore b/examples/with-hls-js/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-hls-js/.gitignore +++ b/examples/with-hls-js/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-http2/.gitignore b/examples/with-http2/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-http2/.gitignore +++ b/examples/with-http2/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-i18n-next-intl/.gitignore b/examples/with-i18n-next-intl/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-i18n-next-intl/.gitignore +++ b/examples/with-i18n-next-intl/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-i18n-rosetta/.gitignore b/examples/with-i18n-rosetta/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-i18n-rosetta/.gitignore +++ b/examples/with-i18n-rosetta/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-iron-session/.gitignore b/examples/with-iron-session/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-iron-session/.gitignore +++ b/examples/with-iron-session/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-jest-babel/.gitignore b/examples/with-jest-babel/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-jest-babel/.gitignore +++ b/examples/with-jest-babel/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-jest/.gitignore b/examples/with-jest/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-jest/.gitignore +++ b/examples/with-jest/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-joi/.gitignore b/examples/with-joi/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-joi/.gitignore +++ b/examples/with-joi/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-jotai/.gitignore b/examples/with-jotai/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-jotai/.gitignore +++ b/examples/with-jotai/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-kea/.gitignore b/examples/with-kea/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-kea/.gitignore +++ b/examples/with-kea/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-knex/.gitignore b/examples/with-knex/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-knex/.gitignore +++ b/examples/with-knex/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-lingui/.gitignore b/examples/with-lingui/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-lingui/.gitignore +++ b/examples/with-lingui/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-magic/.gitignore b/examples/with-magic/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-magic/.gitignore +++ b/examples/with-magic/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mantine/.gitignore b/examples/with-mantine/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mantine/.gitignore +++ b/examples/with-mantine/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mdbreact/.gitignore b/examples/with-mdbreact/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mdbreact/.gitignore +++ b/examples/with-mdbreact/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mdx-remote/.gitignore b/examples/with-mdx-remote/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mdx-remote/.gitignore +++ b/examples/with-mdx-remote/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mdx/.gitignore b/examples/with-mdx/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mdx/.gitignore +++ b/examples/with-mdx/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-meilisearch/.gitignore b/examples/with-meilisearch/.gitignore index 8f322f0d8f495..8777267507c0e 100644 --- a/examples/with-meilisearch/.gitignore +++ b/examples/with-meilisearch/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mobx-state-tree/.gitignore b/examples/with-mobx-state-tree/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mobx-state-tree/.gitignore +++ b/examples/with-mobx-state-tree/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mobx/.gitignore b/examples/with-mobx/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mobx/.gitignore +++ b/examples/with-mobx/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mocha/.gitignore b/examples/with-mocha/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mocha/.gitignore +++ b/examples/with-mocha/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mongodb-mongoose/.gitignore b/examples/with-mongodb-mongoose/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mongodb-mongoose/.gitignore +++ b/examples/with-mongodb-mongoose/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mongodb/.gitignore b/examples/with-mongodb/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mongodb/.gitignore +++ b/examples/with-mongodb/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mqtt-js/.gitignore b/examples/with-mqtt-js/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mqtt-js/.gitignore +++ b/examples/with-mqtt-js/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-msw/.gitignore b/examples/with-msw/.gitignore index 8c835644cb61c..3a6c93b68e9f9 100644 --- a/examples/with-msw/.gitignore +++ b/examples/with-msw/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mux-video/.gitignore b/examples/with-mux-video/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mux-video/.gitignore +++ b/examples/with-mux-video/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-mysql/.gitignore b/examples/with-mysql/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-mysql/.gitignore +++ b/examples/with-mysql/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-neo4j/.gitignore b/examples/with-neo4j/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-neo4j/.gitignore +++ b/examples/with-neo4j/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-next-page-transitions/.gitignore b/examples/with-next-page-transitions/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-next-page-transitions/.gitignore +++ b/examples/with-next-page-transitions/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-next-seo/.gitignore b/examples/with-next-seo/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-next-seo/.gitignore +++ b/examples/with-next-seo/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-next-sitemap/.gitignore b/examples/with-next-sitemap/.gitignore index d889817dea2cc..e0ec684db0710 100644 --- a/examples/with-next-sitemap/.gitignore +++ b/examples/with-next-sitemap/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-next-translate/.gitignore b/examples/with-next-translate/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-next-translate/.gitignore +++ b/examples/with-next-translate/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-next-ui/.gitignore b/examples/with-next-ui/.gitignore index fd3dbb571a12a..8777267507c0e 100755 --- a/examples/with-next-ui/.gitignore +++ b/examples/with-next-ui/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-nhost-auth-realtime-graphql/.gitignore b/examples/with-nhost-auth-realtime-graphql/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-nhost-auth-realtime-graphql/.gitignore +++ b/examples/with-nhost-auth-realtime-graphql/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-opentelemetry/.gitignore b/examples/with-opentelemetry/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-opentelemetry/.gitignore +++ b/examples/with-opentelemetry/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-orbit-components/.gitignore b/examples/with-orbit-components/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-orbit-components/.gitignore +++ b/examples/with-orbit-components/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-overmind/.gitignore b/examples/with-overmind/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-overmind/.gitignore +++ b/examples/with-overmind/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-particles/.gitignore b/examples/with-particles/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-particles/.gitignore +++ b/examples/with-particles/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-passport-and-next-connect/.gitignore b/examples/with-passport-and-next-connect/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-passport-and-next-connect/.gitignore +++ b/examples/with-passport-and-next-connect/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-passport/.gitignore b/examples/with-passport/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-passport/.gitignore +++ b/examples/with-passport/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-paste-typescript/.gitignore b/examples/with-paste-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-paste-typescript/.gitignore +++ b/examples/with-paste-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-plausible/.gitignore b/examples/with-plausible/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-plausible/.gitignore +++ b/examples/with-plausible/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-playwright/.gitignore b/examples/with-playwright/.gitignore index 514accd669d3e..9324f61530a2c 100644 --- a/examples/with-playwright/.gitignore +++ b/examples/with-playwright/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /blob-report/ diff --git a/examples/with-polyfills/.gitignore b/examples/with-polyfills/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-polyfills/.gitignore +++ b/examples/with-polyfills/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-portals-ssr/.gitignore b/examples/with-portals-ssr/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-portals-ssr/.gitignore +++ b/examples/with-portals-ssr/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-portals/.gitignore b/examples/with-portals/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-portals/.gitignore +++ b/examples/with-portals/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-prefetching/.gitignore b/examples/with-prefetching/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-prefetching/.gitignore +++ b/examples/with-prefetching/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-quill-js/.gitignore b/examples/with-quill-js/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-quill-js/.gitignore +++ b/examples/with-quill-js/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-rbx-bulma-pro/.gitignore b/examples/with-rbx-bulma-pro/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-rbx-bulma-pro/.gitignore +++ b/examples/with-rbx-bulma-pro/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-bootstrap/.gitignore b/examples/with-react-bootstrap/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-bootstrap/.gitignore +++ b/examples/with-react-bootstrap/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-ga4/.gitignore b/examples/with-react-ga4/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-ga4/.gitignore +++ b/examples/with-react-ga4/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-hook-form/.gitignore b/examples/with-react-hook-form/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-hook-form/.gitignore +++ b/examples/with-react-hook-form/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-intl/.gitignore b/examples/with-react-intl/.gitignore index 1cf3b4f0f31d5..9b08066746257 100644 --- a/examples/with-react-intl/.gitignore +++ b/examples/with-react-intl/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-jss/.gitignore b/examples/with-react-jss/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-jss/.gitignore +++ b/examples/with-react-jss/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-md-typescript/.gitignore b/examples/with-react-md-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-md-typescript/.gitignore +++ b/examples/with-react-md-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-multi-carousel/.gitignore b/examples/with-react-multi-carousel/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-multi-carousel/.gitignore +++ b/examples/with-react-multi-carousel/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-native-web/.gitignore b/examples/with-react-native-web/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-native-web/.gitignore +++ b/examples/with-react-native-web/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-react-toolbox/.gitignore b/examples/with-react-toolbox/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-react-toolbox/.gitignore +++ b/examples/with-react-toolbox/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-reactstrap/.gitignore b/examples/with-reactstrap/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-reactstrap/.gitignore +++ b/examples/with-reactstrap/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-realm-web/.gitignore b/examples/with-realm-web/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-realm-web/.gitignore +++ b/examples/with-realm-web/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-rebass/.gitignore b/examples/with-rebass/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-rebass/.gitignore +++ b/examples/with-rebass/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-recoil/.gitignore b/examples/with-recoil/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-recoil/.gitignore +++ b/examples/with-recoil/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-redis/.gitignore b/examples/with-redis/.gitignore index 8f322f0d8f495..8777267507c0e 100644 --- a/examples/with-redis/.gitignore +++ b/examples/with-redis/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-redux/.gitignore b/examples/with-redux/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-redux/.gitignore +++ b/examples/with-redux/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-reflexjs/.gitignore b/examples/with-reflexjs/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-reflexjs/.gitignore +++ b/examples/with-reflexjs/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-reflux/.gitignore b/examples/with-reflux/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-reflux/.gitignore +++ b/examples/with-reflux/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-relay-modern/.gitignore b/examples/with-relay-modern/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-relay-modern/.gitignore +++ b/examples/with-relay-modern/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-rematch/.gitignore b/examples/with-rematch/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-rematch/.gitignore +++ b/examples/with-rematch/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-route-as-modal/.gitignore b/examples/with-route-as-modal/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-route-as-modal/.gitignore +++ b/examples/with-route-as-modal/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-segment-analytics-pages-router/.gitignore b/examples/with-segment-analytics-pages-router/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-segment-analytics-pages-router/.gitignore +++ b/examples/with-segment-analytics-pages-router/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-segment-analytics/.gitignore b/examples/with-segment-analytics/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-segment-analytics/.gitignore +++ b/examples/with-segment-analytics/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-service-worker/.gitignore b/examples/with-service-worker/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-service-worker/.gitignore +++ b/examples/with-service-worker/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-sfcc/.gitignore b/examples/with-sfcc/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-sfcc/.gitignore +++ b/examples/with-sfcc/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-shallow-routing/.gitignore b/examples/with-shallow-routing/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-shallow-routing/.gitignore +++ b/examples/with-shallow-routing/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-sitemap/.gitignore b/examples/with-sitemap/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-sitemap/.gitignore +++ b/examples/with-sitemap/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-slate/.gitignore b/examples/with-slate/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-slate/.gitignore +++ b/examples/with-slate/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-static-export/.gitignore b/examples/with-static-export/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-static-export/.gitignore +++ b/examples/with-static-export/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-stencil/.gitignore b/examples/with-stencil/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-stencil/.gitignore +++ b/examples/with-stencil/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-stitches/.gitignore b/examples/with-stitches/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-stitches/.gitignore +++ b/examples/with-stitches/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-storybook/.gitignore b/examples/with-storybook/.gitignore index 1be00c37c422b..0fc4f868bc17f 100644 --- a/examples/with-storybook/.gitignore +++ b/examples/with-storybook/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-strict-csp/.gitignore b/examples/with-strict-csp/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-strict-csp/.gitignore +++ b/examples/with-strict-csp/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-stripe-typescript/.gitignore b/examples/with-stripe-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-stripe-typescript/.gitignore +++ b/examples/with-stripe-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-styled-components-rtl/.gitignore b/examples/with-styled-components-rtl/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-styled-components-rtl/.gitignore +++ b/examples/with-styled-components-rtl/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-styled-components/.gitignore b/examples/with-styled-components/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-styled-components/.gitignore +++ b/examples/with-styled-components/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-styled-jsx/.gitignore b/examples/with-styled-jsx/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-styled-jsx/.gitignore +++ b/examples/with-styled-jsx/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-styletron/.gitignore b/examples/with-styletron/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-styletron/.gitignore +++ b/examples/with-styletron/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-supabase/.gitignore b/examples/with-supabase/.gitignore index 00bba9bb2902b..13b10b85faf45 100644 --- a/examples/with-supabase/.gitignore +++ b/examples/with-supabase/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-supertokens/.gitignore b/examples/with-supertokens/.gitignore index d22ad798751e5..cac2a4d45e279 100644 --- a/examples/with-supertokens/.gitignore +++ b/examples/with-supertokens/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-temporal/.gitignore b/examples/with-temporal/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-temporal/.gitignore +++ b/examples/with-temporal/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-three-js/.gitignore b/examples/with-three-js/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-three-js/.gitignore +++ b/examples/with-three-js/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-tigris/.gitignore b/examples/with-tigris/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-tigris/.gitignore +++ b/examples/with-tigris/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-turbopack-loaders/.gitignore b/examples/with-turbopack-loaders/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-turbopack-loaders/.gitignore +++ b/examples/with-turbopack-loaders/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-turbopack/.gitignore b/examples/with-turbopack/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-turbopack/.gitignore +++ b/examples/with-turbopack/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-turso/.gitignore b/examples/with-turso/.gitignore index a20081e632df9..e3c3cb10369d8 100644 --- a/examples/with-turso/.gitignore +++ b/examples/with-turso/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-typescript-graphql/.gitignore b/examples/with-typescript-graphql/.gitignore index 213ad251e900f..6642d0af1d16c 100644 --- a/examples/with-typescript-graphql/.gitignore +++ b/examples/with-typescript-graphql/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-typescript-types/.gitignore b/examples/with-typescript-types/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-typescript-types/.gitignore +++ b/examples/with-typescript-types/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-typescript/.gitignore b/examples/with-typescript/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-typescript/.gitignore +++ b/examples/with-typescript/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-unsplash/.gitignore b/examples/with-unsplash/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-unsplash/.gitignore +++ b/examples/with-unsplash/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-urql/.gitignore b/examples/with-urql/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-urql/.gitignore +++ b/examples/with-urql/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-userbase/.gitignore b/examples/with-userbase/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-userbase/.gitignore +++ b/examples/with-userbase/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-vanilla-extract/.gitignore b/examples/with-vanilla-extract/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-vanilla-extract/.gitignore +++ b/examples/with-vanilla-extract/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-videojs/.gitignore b/examples/with-videojs/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-videojs/.gitignore +++ b/examples/with-videojs/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-vitest/.gitignore b/examples/with-vitest/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-vitest/.gitignore +++ b/examples/with-vitest/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-web-worker/.gitignore b/examples/with-web-worker/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-web-worker/.gitignore +++ b/examples/with-web-worker/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-webassembly/.gitignore b/examples/with-webassembly/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-webassembly/.gitignore +++ b/examples/with-webassembly/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-windicss/.gitignore b/examples/with-windicss/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-windicss/.gitignore +++ b/examples/with-windicss/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-xstate/.gitignore b/examples/with-xstate/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-xstate/.gitignore +++ b/examples/with-xstate/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-yarn-workspaces/.gitignore b/examples/with-yarn-workspaces/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-yarn-workspaces/.gitignore +++ b/examples/with-yarn-workspaces/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-yoga/.gitignore b/examples/with-yoga/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-yoga/.gitignore +++ b/examples/with-yoga/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-youtube-embed/.gitignore b/examples/with-youtube-embed/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-youtube-embed/.gitignore +++ b/examples/with-youtube-embed/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-zones/.gitignore b/examples/with-zones/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-zones/.gitignore +++ b/examples/with-zones/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/examples/with-zustand/.gitignore b/examples/with-zustand/.gitignore index fd3dbb571a12a..8777267507c0e 100644 --- a/examples/with-zustand/.gitignore +++ b/examples/with-zustand/.gitignore @@ -3,8 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js -.yarn/install-state.gz +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage diff --git a/turbopack/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.gitignore b/turbopack/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.gitignore index 1437c53f70bc2..ab0b6bd36d513 100644 --- a/turbopack/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.gitignore +++ b/turbopack/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.gitignore @@ -3,7 +3,12 @@ # dependencies /node_modules /.pnp -.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions # testing /coverage