project-to-text 1.0.1 → 1.0.2

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
@@ -26,6 +26,9 @@ Creates `thisProject.txt` with your project content.
26
26
 
27
27
  ### Command Line
28
28
  ```bash
29
+ #install it globally
30
+ npm install -g project-to-text
31
+
29
32
  # Basic usage
30
33
  project-to-text
31
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-to-text",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Convert your project to a single text file for AI analysis and code sharing",
5
5
  "keywords": [
6
6
  "project",
package/src/scanner.js CHANGED
@@ -2,10 +2,12 @@ const fg = require('fast-glob');
2
2
 
3
3
  module.exports = async (customIgnore = []) => {
4
4
  const defaultIgnore = [
5
+ 'node_modules',
5
6
  'node_modules/**',
6
7
  'README.md',
7
8
  'package-lock.json',
8
9
  'package.json',
10
+ '.git',
9
11
  '.git/**',
10
12
  '.DS_Store',
11
13
  '*.log',