specleap-framework 2.0.0 → 2.0.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/bin/specleap +16 -0
- package/package.json +3 -2
package/bin/specleap
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { spawn } = require('child_process');
|
|
4
|
+
const path = require('path');
|
|
5
|
+
|
|
6
|
+
// Ejecutar setup.sh desde el directorio del paquete
|
|
7
|
+
const setupPath = path.join(__dirname, '..', 'setup.sh');
|
|
8
|
+
|
|
9
|
+
const setup = spawn('bash', [setupPath], {
|
|
10
|
+
stdio: 'inherit',
|
|
11
|
+
cwd: process.cwd()
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
setup.on('close', (code) => {
|
|
15
|
+
process.exit(code);
|
|
16
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specleap-framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Spec-Driven Development Framework — Transform VSCode, Cursor, JetBrains into spec-first development machines",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"spec-driven-development",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"url": "https://specleap.com"
|
|
32
32
|
},
|
|
33
33
|
"bin": {
|
|
34
|
-
"specleap": "./
|
|
34
|
+
"specleap": "./bin/specleap"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"postinstall": "bash setup.sh",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"files": [
|
|
46
46
|
".agents/**",
|
|
47
47
|
".commands/**",
|
|
48
|
+
"bin/**",
|
|
48
49
|
"proyectos/_template/**",
|
|
49
50
|
"rules/**",
|
|
50
51
|
"scripts/**",
|