git-ignore-generator-creator-cli 0.1.2 → 0.1.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/README.md +23 -0
- package/package.json +11 -4
- package/templates/angular.txt +3 -0
- package/templates/cpp.txt +5 -0
- package/templates/dotnet.txt +7 -0
- package/templates/flutter.txt +3 -0
- package/templates/go.txt +3 -0
- package/templates/php.txt +3 -0
- package/templates/python.txt +2 -1
- package/templates/ruby.txt +4 -0
- package/templates/rust.txt +2 -0
- package/templates/swift.txt +4 -0
- package/templates/vscode.txt +2 -0
package/README.md
CHANGED
@@ -11,6 +11,29 @@ No need to search online — create your `.gitignore` instantly from common temp
|
|
11
11
|
- Includes templates for Node.js, React, Python, VSCode, and more.
|
12
12
|
- Lightweight and fast.
|
13
13
|
|
14
|
+
|
15
|
+
---
|
16
|
+
|
17
|
+
## Supported Templates
|
18
|
+
Currently includes templates for:
|
19
|
+
|
20
|
+
- node
|
21
|
+
- react
|
22
|
+
- vscode
|
23
|
+
- python
|
24
|
+
- docker
|
25
|
+
- java
|
26
|
+
- go
|
27
|
+
- php
|
28
|
+
- ruby
|
29
|
+
- dotnet
|
30
|
+
- angular
|
31
|
+
- flutter
|
32
|
+
- rust
|
33
|
+
- cpp
|
34
|
+
- swift
|
35
|
+
|
36
|
+
|
14
37
|
---
|
15
38
|
|
16
39
|
## 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.4",
|
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
|
],
|
package/templates/go.txt
ADDED
package/templates/python.txt
CHANGED