Преглед изворни кода

🔧 chore(gitignore): add playwright report directories to gitignore
- ignore playwright-report directory to exclude test reports from version control
- ignore test-results directory to exclude test output files from version control

⚡️ perf(vite): optimize dev server watch performance
- add ignored directories to vite watch configuration
- exclude playwright-report, test-results, dist and sdk core dist directories from file watching

yourname пре 2 месеци
родитељ
комит
2482c06162
2 измењених фајлова са 4 додато и 0 уклоњено
  1. 3 0
      .gitignore
  2. 1 0
      vite.config.ts

+ 3 - 0
.gitignore

@@ -133,3 +133,6 @@ dist
 # lock
 yarn.lock
 package-lock.json
+
+playwright-report
+test-results

+ 1 - 0
vite.config.ts

@@ -32,6 +32,7 @@ export default defineConfig(({ mode }) => {
       port: 8080,
       watch: {
         // usePolling: true
+        ignored: ["playwright-report", "test-results", "dist", "packages/stt-sdk-core/dist"],
       },
     },
     plugins: [