mdsmith 1.2.0 β 1.2.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-MDSMITH.md +19 -14
- package/README.md +0 -0
- package/bin/index.js +29 -812
- package/package.json +1 -1
- package/src/analysis/index.js +149 -0
- package/src/config/index.js +43 -0
- package/src/detectors/index.js +203 -0
- package/src/formatters/index.js +53 -0
- package/src/generators/index.js +27 -0
- package/src/interactive/index.js +95 -0
- package/src/readme/index.js +286 -0
- package/src/scanner/index.js +113 -0
- package/bin/beta.js +0 -117
package/README-MDSMITH.md
CHANGED
|
@@ -4,17 +4,33 @@
|
|
|
4
4
|
CLI para gerar READMEs e arquivos Markdown
|
|
5
5
|
|
|
6
6
|
## π InformaΓ§Γ΅es do Projeto
|
|
7
|
-
- **VersΓ£o:** 1.
|
|
7
|
+
- **VersΓ£o:** 1.2.0
|
|
8
8
|
- **Gerenciador de Pacotes:** npm
|
|
9
9
|
- **Tipo:** Node.js Project
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
11
|
## π Estrutura do Projeto
|
|
14
12
|
```
|
|
15
13
|
π bin
|
|
16
14
|
π beta.js
|
|
17
15
|
π index.js
|
|
16
|
+
π versΓ£o2.js
|
|
17
|
+
π src
|
|
18
|
+
π analysis
|
|
19
|
+
π index.js
|
|
20
|
+
π config
|
|
21
|
+
π index.js
|
|
22
|
+
π detectors
|
|
23
|
+
π index.js
|
|
24
|
+
π formatters
|
|
25
|
+
π index.js
|
|
26
|
+
π generators
|
|
27
|
+
π index.js
|
|
28
|
+
π interactive
|
|
29
|
+
π index.js
|
|
30
|
+
π readme
|
|
31
|
+
π index.js
|
|
32
|
+
π scanner
|
|
33
|
+
π index.js
|
|
18
34
|
π mdsmith.config.json
|
|
19
35
|
π package-lock.json
|
|
20
36
|
π package.json
|
|
@@ -22,21 +38,10 @@ CLI para gerar READMEs e arquivos Markdown
|
|
|
22
38
|
|
|
23
39
|
```
|
|
24
40
|
|
|
25
|
-
|
|
26
|
-
## π Getting Started
|
|
27
|
-
|
|
28
41
|
```bash
|
|
29
42
|
npm install
|
|
30
43
|
```
|
|
31
44
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
45
|
---
|
|
41
46
|
|
|
42
47
|
Gerado por **mdSmith**
|
package/README.md
ADDED
|
Binary file
|