@leanspec/http-windows-x64 0.2.17-dev.21035738990 → 0.2.17-dev.21036599661

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/leanspec-http.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@leanspec/http-windows-x64",
3
- "version": "0.2.17-dev.21035738990",
4
- "description": "LeanSpec HTTP server binary for Windows x64",
3
+ "version": "0.2.17-dev.21036599661",
4
+ "description": "LeanSpec HTTP Server binary for Windows x64",
5
5
  "os": [
6
6
  "win32"
7
7
  ],
@@ -10,8 +10,12 @@
10
10
  ],
11
11
  "main": "leanspec-http.exe",
12
12
  "files": [
13
- "leanspec-http.exe"
13
+ "leanspec-http.exe",
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"
package/postinstall.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Postinstall script - no-op on Windows (permissions not needed).
4
+ * This file exists for consistency across all platform packages.
5
+ */
6
+ console.log('✓ leanspec-http.exe ready');