@baseplate-dev/tools 0.3.8 → 0.4.0

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.
@@ -33,6 +33,7 @@ export function generateTypescriptEslintConfig(options = []) {
33
33
  '**/*.test.{js,ts,jsx,tsx}',
34
34
  '**/*.bench.{js,ts,jsx,tsx}',
35
35
  '**/tests/**/*',
36
+ '**/test-helpers/**/*',
36
37
  '**/__mocks__/**/*',
37
38
  // allow dev dependencies for config files at root level
38
39
  '*.{js,ts}',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baseplate-dev/tools",
3
- "version": "0.3.8",
3
+ "version": "0.4.0",
4
4
  "description": "Shared dev configurations for linting, formatting, and testing Baseplate projects",
5
5
  "keywords": [
6
6
  "development-tools",
@@ -74,7 +74,7 @@
74
74
  "eslint": "9.32.0",
75
75
  "prettier": "3.6.2",
76
76
  "typescript": "5.8.3",
77
- "vite": "7.1.5"
77
+ "vite": "7.1.12"
78
78
  },
79
79
  "peerDependencies": {
80
80
  "eslint": "9.32.0",
@@ -21,7 +21,11 @@ export function createNodeVitestConfig(dirname) {
21
21
  },
22
22
  },
23
23
  mockReset: true,
24
- exclude: [...defaultExclude, '**/e2e/**'],
24
+ exclude: [
25
+ ...defaultExclude,
26
+ '**/e2e/**',
27
+ '**/generators/*/*/templates/**',
28
+ ],
25
29
  },
26
30
  });
27
31
  }