stackaudit 0.1.0 → 0.1.1
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 +4 -4
- package/bin/{stackAudit.js → stackaudit.js} +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
### Vía NPM (Recomendado para Node.js)
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npm install -g
|
|
22
|
+
npm install -g stackaudit
|
|
23
23
|
# O ejecútalo directamente con npx
|
|
24
|
-
npx
|
|
24
|
+
npx stackaudit check
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Binarios Standalone (Próximamente)
|
|
@@ -37,7 +37,7 @@ Para desarrolladores de Go, Python, PHP, etc., ofreceremos binarios compilados (
|
|
|
37
37
|
Genera un archivo de configuración base en tu proyecto:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
|
|
40
|
+
stackaudit init
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Esto creará un archivo `stackAudit.config.json` en la raíz de tu proyecto.
|
|
@@ -76,7 +76,7 @@ Edita `stackAudit.config.json` para definir los requisitos de tu proyecto. Ejemp
|
|
|
76
76
|
Ejecuta el comando check antes de trabajar:
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
|
|
79
|
+
stackaudit check
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
✅ Si todo está bien, verás un mensaje de éxito.
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stackaudit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI tool to audit developer environments against a declarative configuration file",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"stackaudit": "
|
|
7
|
+
"stackaudit": "bin/stackaudit.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|