lean-spec 0.2.17-dev.21036599661 → 0.2.18
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/binaries/darwin-arm64/lean-spec +0 -0
- package/binaries/darwin-arm64/package.json +6 -2
- package/binaries/darwin-arm64/postinstall.js +17 -0
- package/binaries/darwin-x64/lean-spec +0 -0
- package/binaries/darwin-x64/package.json +6 -2
- package/binaries/darwin-x64/postinstall.js +17 -0
- package/binaries/linux-arm64/lean-spec +0 -0
- package/binaries/linux-arm64/package.json +6 -2
- package/binaries/linux-arm64/postinstall.js +17 -0
- package/binaries/linux-x64/lean-spec +0 -0
- package/binaries/linux-x64/package.json +6 -2
- package/binaries/linux-x64/postinstall.js +17 -0
- package/binaries/windows-x64/package.json +1 -1
- package/package.json +6 -6
- package/binaries/windows-x64/lean-spec.exe +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/cli-darwin-arm64",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "LeanSpec CLI binary for macOS ARM64",
|
|
5
5
|
"os": [
|
|
6
6
|
"darwin"
|
|
@@ -10,8 +10,12 @@
|
|
|
10
10
|
],
|
|
11
11
|
"main": "lean-spec",
|
|
12
12
|
"files": [
|
|
13
|
-
"lean-spec"
|
|
13
|
+
"lean-spec",
|
|
14
|
+
"postinstall.js"
|
|
14
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"postinstall": "node postinstall.js"
|
|
18
|
+
},
|
|
15
19
|
"repository": {
|
|
16
20
|
"type": "git",
|
|
17
21
|
"url": "https://github.com/codervisor/lean-spec.git"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Postinstall script to set execute permissions on the binary.
|
|
4
|
+
* npm doesn't preserve file permissions, so we need to set them after install.
|
|
5
|
+
*/
|
|
6
|
+
const { chmodSync } = require('fs');
|
|
7
|
+
const { join } = require('path');
|
|
8
|
+
|
|
9
|
+
const binaryPath = join(__dirname, 'lean-spec');
|
|
10
|
+
|
|
11
|
+
try {
|
|
12
|
+
chmodSync(binaryPath, 0o755);
|
|
13
|
+
console.log('✓ Set execute permissions on lean-spec binary');
|
|
14
|
+
} catch (err) {
|
|
15
|
+
console.error('Warning: Could not set execute permissions:', err.message);
|
|
16
|
+
// Don't fail the install
|
|
17
|
+
}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/cli-darwin-x64",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "LeanSpec CLI binary for macOS x64",
|
|
5
5
|
"os": [
|
|
6
6
|
"darwin"
|
|
@@ -10,8 +10,12 @@
|
|
|
10
10
|
],
|
|
11
11
|
"main": "lean-spec",
|
|
12
12
|
"files": [
|
|
13
|
-
"lean-spec"
|
|
13
|
+
"lean-spec",
|
|
14
|
+
"postinstall.js"
|
|
14
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"postinstall": "node postinstall.js"
|
|
18
|
+
},
|
|
15
19
|
"repository": {
|
|
16
20
|
"type": "git",
|
|
17
21
|
"url": "https://github.com/codervisor/lean-spec.git"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Postinstall script to set execute permissions on the binary.
|
|
4
|
+
* npm doesn't preserve file permissions, so we need to set them after install.
|
|
5
|
+
*/
|
|
6
|
+
const { chmodSync } = require('fs');
|
|
7
|
+
const { join } = require('path');
|
|
8
|
+
|
|
9
|
+
const binaryPath = join(__dirname, 'lean-spec');
|
|
10
|
+
|
|
11
|
+
try {
|
|
12
|
+
chmodSync(binaryPath, 0o755);
|
|
13
|
+
console.log('✓ Set execute permissions on lean-spec binary');
|
|
14
|
+
} catch (err) {
|
|
15
|
+
console.error('Warning: Could not set execute permissions:', err.message);
|
|
16
|
+
// Don't fail the install
|
|
17
|
+
}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/cli-linux-arm64",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "LeanSpec CLI binary for Linux ARM64",
|
|
5
5
|
"os": [
|
|
6
6
|
"linux"
|
|
@@ -10,8 +10,12 @@
|
|
|
10
10
|
],
|
|
11
11
|
"main": "lean-spec",
|
|
12
12
|
"files": [
|
|
13
|
-
"lean-spec"
|
|
13
|
+
"lean-spec",
|
|
14
|
+
"postinstall.js"
|
|
14
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"postinstall": "node postinstall.js"
|
|
18
|
+
},
|
|
15
19
|
"repository": {
|
|
16
20
|
"type": "git",
|
|
17
21
|
"url": "https://github.com/codervisor/lean-spec.git"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Postinstall script to set execute permissions on the binary.
|
|
4
|
+
* npm doesn't preserve file permissions, so we need to set them after install.
|
|
5
|
+
*/
|
|
6
|
+
const { chmodSync } = require('fs');
|
|
7
|
+
const { join } = require('path');
|
|
8
|
+
|
|
9
|
+
const binaryPath = join(__dirname, 'lean-spec');
|
|
10
|
+
|
|
11
|
+
try {
|
|
12
|
+
chmodSync(binaryPath, 0o755);
|
|
13
|
+
console.log('✓ Set execute permissions on lean-spec binary');
|
|
14
|
+
} catch (err) {
|
|
15
|
+
console.error('Warning: Could not set execute permissions:', err.message);
|
|
16
|
+
// Don't fail the install
|
|
17
|
+
}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/cli-linux-x64",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "LeanSpec CLI binary for Linux x64",
|
|
5
5
|
"os": [
|
|
6
6
|
"linux"
|
|
@@ -10,8 +10,12 @@
|
|
|
10
10
|
],
|
|
11
11
|
"main": "lean-spec",
|
|
12
12
|
"files": [
|
|
13
|
-
"lean-spec"
|
|
13
|
+
"lean-spec",
|
|
14
|
+
"postinstall.js"
|
|
14
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"postinstall": "node postinstall.js"
|
|
18
|
+
},
|
|
15
19
|
"repository": {
|
|
16
20
|
"type": "git",
|
|
17
21
|
"url": "https://github.com/codervisor/lean-spec.git"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Postinstall script to set execute permissions on the binary.
|
|
4
|
+
* npm doesn't preserve file permissions, so we need to set them after install.
|
|
5
|
+
*/
|
|
6
|
+
const { chmodSync } = require('fs');
|
|
7
|
+
const { join } = require('path');
|
|
8
|
+
|
|
9
|
+
const binaryPath = join(__dirname, 'lean-spec');
|
|
10
|
+
|
|
11
|
+
try {
|
|
12
|
+
chmodSync(binaryPath, 0o755);
|
|
13
|
+
console.log('✓ Set execute permissions on lean-spec binary');
|
|
14
|
+
} catch (err) {
|
|
15
|
+
console.error('Warning: Could not set execute permissions:', err.message);
|
|
16
|
+
// Don't fail the install
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lean-spec",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "Specification-driven development made simple",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"CHANGELOG.md"
|
|
37
37
|
],
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@leanspec/cli-darwin-arm64": "^0.2.
|
|
40
|
-
"@leanspec/cli-darwin-x64": "^0.2.
|
|
41
|
-
"@leanspec/cli-linux-arm64": "^0.2.
|
|
42
|
-
"@leanspec/cli-linux-x64": "^0.2.
|
|
43
|
-
"@leanspec/cli-windows-x64": "^0.2.
|
|
39
|
+
"@leanspec/cli-darwin-arm64": "^0.2.18",
|
|
40
|
+
"@leanspec/cli-darwin-x64": "^0.2.18",
|
|
41
|
+
"@leanspec/cli-linux-arm64": "^0.2.18",
|
|
42
|
+
"@leanspec/cli-linux-x64": "^0.2.18",
|
|
43
|
+
"@leanspec/cli-windows-x64": "^0.2.18"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=20"
|
|
Binary file
|