specleap-framework 2.0.2 → 2.0.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 +0 -1
- package/bin/specleap +5 -3
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -562,7 +562,6 @@ Merge (solo si las 3 capas pasan)
|
|
|
562
562
|
SpecLeap es **100% gratuito y open-source**. Si te resulta útil, puedes apoyar su desarrollo:
|
|
563
563
|
|
|
564
564
|
[](https://ko-fi.com/specleap)
|
|
565
|
-
[](https://www.buymeacoffee.com/specleap)
|
|
566
565
|
|
|
567
566
|
Las donaciones nos ayudan a:
|
|
568
567
|
- ✅ Mantener el framework actualizado
|
package/bin/specleap
CHANGED
|
@@ -3,12 +3,14 @@
|
|
|
3
3
|
const { spawn } = require('child_process');
|
|
4
4
|
const path = require('path');
|
|
5
5
|
|
|
6
|
-
//
|
|
7
|
-
const
|
|
6
|
+
// Directorio del paquete (donde están todos los archivos)
|
|
7
|
+
const packageDir = path.join(__dirname, '..');
|
|
8
|
+
const setupPath = path.join(packageDir, 'setup.sh');
|
|
8
9
|
|
|
10
|
+
// Ejecutar setup.sh DESDE el directorio del paquete
|
|
9
11
|
const setup = spawn('bash', [setupPath], {
|
|
10
12
|
stdio: 'inherit',
|
|
11
|
-
cwd:
|
|
13
|
+
cwd: packageDir // <-- ESTO ES LO CRÍTICO
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
setup.on('close', (code) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specleap-framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Spec-Driven Development Framework — Transform VSCode, Cursor, JetBrains into spec-first development machines",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"spec-driven-development",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
},
|
|
33
33
|
"bin": "bin/specleap",
|
|
34
34
|
"scripts": {
|
|
35
|
-
"postinstall": "bash setup.sh",
|
|
36
35
|
"setup": "bash setup.sh",
|
|
37
36
|
"skills": "bash scripts/install-skills.sh",
|
|
38
37
|
"generate": "bash scripts/generate-contrato.sh"
|