@leanspec/cli-linux-x64 0.2.28-dev.23044283727 → 0.3.0
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/{lean-spec → leanspec} +0 -0
- package/package.json +4 -4
- package/postinstall.js +2 -2
package/{lean-spec → leanspec}
RENAMED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/cli-linux-x64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "LeanSpec CLI binary for Linux x64",
|
|
5
5
|
"os": [
|
|
6
6
|
"linux"
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"cpu": [
|
|
9
9
|
"x64"
|
|
10
10
|
],
|
|
11
|
-
"main": "
|
|
11
|
+
"main": "leanspec",
|
|
12
12
|
"files": [
|
|
13
|
-
"
|
|
13
|
+
"leanspec",
|
|
14
14
|
"postinstall.js"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/codervisor/
|
|
21
|
+
"url": "https://github.com/codervisor/leanspec.git"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT"
|
|
24
24
|
}
|
package/postinstall.js
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
const { chmodSync } = require('fs');
|
|
7
7
|
const { join } = require('path');
|
|
8
8
|
|
|
9
|
-
const binaryPath = join(__dirname, '
|
|
9
|
+
const binaryPath = join(__dirname, 'leanspec');
|
|
10
10
|
|
|
11
11
|
try {
|
|
12
12
|
chmodSync(binaryPath, 0o755);
|
|
13
|
-
console.log('✓ Set execute permissions on
|
|
13
|
+
console.log('✓ Set execute permissions on leanspec binary');
|
|
14
14
|
} catch (err) {
|
|
15
15
|
console.error('Warning: Could not set execute permissions:', err.message);
|
|
16
16
|
// Don't fail the install
|