From 54908ab74a4d4cb1e249f12b13005639df5bdb3a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 15:43:11 +0000 Subject: [PATCH] Add templates and CI/CD workflows --- src/gitignore_cli/templates/react.yaml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/gitignore_cli/templates/react.yaml diff --git a/src/gitignore_cli/templates/react.yaml b/src/gitignore_cli/templates/react.yaml new file mode 100644 index 0000000..d997e64 --- /dev/null +++ b/src/gitignore_cli/templates/react.yaml @@ -0,0 +1,34 @@ +name: react +category: framework +description: React.js framework +patterns: | + # Dependencies + node_modules/ + .pnp/ + .pnp.js + + # Build + build/ + dist/ + + # Misc + .DS_Store + *.pem + + # Debug + npm-debug.log* + yarn-debug.log* + yarn-error.log* + + # Local env files + .env*.local + + # Vercel + .vercel + + # TypeScript + *.tsbuildinfo + + # IDE + .idea/ + .vscode/