@aiready/core 0.7.3 → 0.7.4

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/dist/index.js CHANGED
@@ -62,7 +62,12 @@ var DEFAULT_EXCLUDE = [
62
62
  "**/.vuepress/**",
63
63
  "**/.cache/**",
64
64
  "**/.turbo/**",
65
- // Test and coverage
65
+ // Test files and coverage
66
+ "**/*.test.*",
67
+ "**/*.spec.*",
68
+ "**/__tests__/**",
69
+ "**/test/**",
70
+ "**/tests/**",
66
71
  "**/coverage/**",
67
72
  "**/.nyc_output/**",
68
73
  "**/.jest/**",
package/dist/index.mjs CHANGED
@@ -19,7 +19,12 @@ var DEFAULT_EXCLUDE = [
19
19
  "**/.vuepress/**",
20
20
  "**/.cache/**",
21
21
  "**/.turbo/**",
22
- // Test and coverage
22
+ // Test files and coverage
23
+ "**/*.test.*",
24
+ "**/*.spec.*",
25
+ "**/__tests__/**",
26
+ "**/test/**",
27
+ "**/tests/**",
23
28
  "**/coverage/**",
24
29
  "**/.nyc_output/**",
25
30
  "**/.jest/**",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/core",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "Shared utilities for AIReady analysis tools",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",