@vijayhardaha/dev-config 2.3.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vijayhardaha/dev-config",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Reusable development configurations for Next.js + TypeScript projects",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -34,4 +34,11 @@ describe('eslint/lib/ignores.js', () => {
34
34
  // Verify that the result is still an array (merged ignores).
35
35
  expect(Array.isArray(result)).toBe(true);
36
36
  });
37
+
38
+ it('should ignore Supabase temporary files by default', async () => {
39
+ const module = await import('../ignores.js');
40
+ const [config] = module.globalIgnores();
41
+
42
+ expect(config.ignores).toContain('**/supabase/.temp/**');
43
+ });
37
44
  });
@@ -37,7 +37,7 @@ const testIgnores = ['**/coverage/', '**/test-results/', '**/.playwright-report/
37
37
  /**
38
38
  * Cache and temporary file ignore patterns.
39
39
  */
40
- const cacheIgnores = ['**/.cache/', '**/*.log', '**/.DS_Store', '**/Thumbs.db', '**/*.tmp'];
40
+ const cacheIgnores = ['**/.cache/', '**/supabase/.temp/**', '**/*.log', '**/.DS_Store', '**/Thumbs.db', '**/*.tmp'];
41
41
 
42
42
  /**
43
43
  * Environment and config file ignore patterns.