project-to-text 1.0.0 → 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 +5 -7
- package/package.json +5 -5
- package/src/scanner.js +2 -0
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# project-to-text
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/project-to-text)
|
|
4
|
-
[](https://github.com/
|
|
4
|
+
[](https://github.com/IrbadAbdeldjelil/project-to-text/blob/main/LICENSE)
|
|
5
5
|
[](https://www.npmjs.com/package/project-to-text)
|
|
6
6
|
|
|
7
7
|
A powerful tool that converts your entire project into a single text file, making it easy to share with AI assistants for code review, analysis, and feedback.
|
|
@@ -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
|
|
|
@@ -90,15 +93,11 @@ CONTENT : {
|
|
|
90
93
|
|
|
91
94
|
|
|
92
95
|
|
|
93
|
-
## 📜 License
|
|
94
|
-
|
|
95
|
-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
96
|
-
|
|
97
96
|
## 👨💻 Author
|
|
98
97
|
|
|
99
98
|
**Irbad Abdeldjelil**
|
|
100
99
|
- Email: irbadabdeldjelil@gmail.com
|
|
101
|
-
- GitHub: [
|
|
100
|
+
- GitHub: [IrbadAbdeldjelil](https://github.com/IrbadAbdeldjelil)
|
|
102
101
|
|
|
103
102
|
## 🙏 Acknowledgments
|
|
104
103
|
|
|
@@ -112,4 +111,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
112
111
|
**If you find this tool helpful, please consider giving it a ⭐ on GitHub!**
|
|
113
112
|
|
|
114
113
|
</div>
|
|
115
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "project-to-text",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"fast-glob": "^3.3.3"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=24.6.0"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/IrbadAbdeldjelil/project-to-text"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://github.com/
|
|
36
|
+
"homepage": "https://github.com/IrbadAbdeldjelil/project-to-text#readme",
|
|
37
37
|
"bugs": {
|
|
38
|
-
"url": "https://github.com/
|
|
38
|
+
"url": "https://github.com/IrbadAbdeldjelil/project-to-text/issues"
|
|
39
39
|
}
|
|
40
40
|
}
|
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',
|