git-ignore-generator-creator-cli 0.1.3 → 0.1.5
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 +28 -2
- package/package.json +11 -4
package/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
-
# git-ignore-
|
1
|
+
# git-ignore-generator-creator-cli
|
2
2
|
|
3
|
-
|
3
|
+

|
4
|
+

|
5
|
+
|
6
|
+
A fast, offline CLI to generate .gitignore files for Node, Python, Java, React, and more. Generate `.gitignore` files for multiple tech stacks quickly.
|
4
7
|
No need to search online — create your `.gitignore` instantly from common templates like **Node.js**, **React**, **Python**, and more.
|
5
8
|
|
6
9
|
---
|
@@ -11,6 +14,29 @@ No need to search online — create your `.gitignore` instantly from common temp
|
|
11
14
|
- Includes templates for Node.js, React, Python, VSCode, and more.
|
12
15
|
- Lightweight and fast.
|
13
16
|
|
17
|
+
|
18
|
+
---
|
19
|
+
|
20
|
+
## Supported Templates
|
21
|
+
Currently includes templates for:
|
22
|
+
|
23
|
+
- node
|
24
|
+
- react
|
25
|
+
- vscode
|
26
|
+
- python
|
27
|
+
- docker
|
28
|
+
- java
|
29
|
+
- go
|
30
|
+
- php
|
31
|
+
- ruby
|
32
|
+
- dotnet
|
33
|
+
- angular
|
34
|
+
- flutter
|
35
|
+
- rust
|
36
|
+
- cpp
|
37
|
+
- swift
|
38
|
+
|
39
|
+
|
14
40
|
---
|
15
41
|
|
16
42
|
## Installation
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "git-ignore-generator-creator-cli",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.5",
|
4
4
|
"description": "Generate .gitignore files quickly for multiple tech stacks",
|
5
5
|
"bin": {
|
6
6
|
"git-ignore-gen": "./bin/index.js"
|
@@ -21,12 +21,19 @@
|
|
21
21
|
"automation",
|
22
22
|
"node",
|
23
23
|
"react",
|
24
|
+
"vscode",
|
24
25
|
"python",
|
25
26
|
"java",
|
26
27
|
"docker",
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"
|
28
|
+
"go",
|
29
|
+
"php",
|
30
|
+
"ruby",
|
31
|
+
"dotnet",
|
32
|
+
"angular",
|
33
|
+
"flutter",
|
34
|
+
"rust",
|
35
|
+
"cpp",
|
36
|
+
"swift",
|
30
37
|
"gitignore generator",
|
31
38
|
"create gitignore"
|
32
39
|
],
|