dotenv-diff 2.1.2 → 2.1.3

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/README.md CHANGED
@@ -100,14 +100,14 @@ This will display statistics about the scan, such as the number of files scanned
100
100
 
101
101
  ## include or exclude specific files for scanning
102
102
 
103
- You can specify which files to include or exclude from the scan using the `--include` and `--exclude` options:
103
+ You can specify which files to include or exclude from the scan using the `--include-files` and `--exclude-files` options:
104
104
 
105
105
  ```bash
106
- dotenv-diff --scan-usage --include '**/*.js,**/*.ts' --exclude '**/*.spec.ts'
106
+ dotenv-diff --scan-usage --include-files '**/*.js,**/*.ts' --exclude-files '**/*.spec.ts'
107
107
  ```
108
108
 
109
109
  By default, the scanner looks at JavaScript, TypeScript, Vue, and Svelte files.
110
- The --include and --exclude options let you refine this list to focus on specific file types or directories.
110
+ The --include-files and --exclude-files options let you refine this list to focus on specific file types or directories.
111
111
 
112
112
  ### Override with `--files`
113
113
 
@@ -46,6 +46,8 @@ const DEFAULT_INCLUDE_EXTENSIONS = [
46
46
  ];
47
47
  const DEFAULT_EXCLUDE_PATTERNS = [
48
48
  'node_modules',
49
+ '.sveltekit',
50
+ '_actions',
49
51
  'dist',
50
52
  'build',
51
53
  '.next',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotenv-diff",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "type": "module",
5
5
  "description": "A CLI tool to find differences between .env and .env.example / .env.* files. And optionally scan your codebase to find out which environment variables are actually used in your code.",
6
6
  "bin": {