@turbo/windows-64 0.0.0 → 2.8.18-canary.3
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.
- turbo-windows-x64/LICENSE +7 -0
- turbo-windows-x64/README.md +3 -0
- turbo-windows-x64/bin/turbo +15 -0
- turbo-windows-x64/bin/turbo.exe +0 -0
- turbo-windows-x64/package.json +19 -0
- package/package.json +0 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2026 Vercel, Inc
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Unfortunately even though npm shims "bin" commands on Windows with auto-
|
|
4
|
+
// generated forwarding scripts, it doesn't strip the ".exe" from the file name
|
|
5
|
+
// first. So it's possible to publish executables via npm on all platforms
|
|
6
|
+
// except Windows. I consider this a npm bug.
|
|
7
|
+
//
|
|
8
|
+
// My workaround is to add this script as another layer of indirection. It'll
|
|
9
|
+
// be slower because node has to boot up just to shell out to the actual exe,
|
|
10
|
+
// but Windows is somewhat of a second-class platform to npm so it's the best
|
|
11
|
+
// I can do I think.
|
|
12
|
+
const path = require('path');
|
|
13
|
+
const turbo_exe = path.join(__dirname, 'turbo.exe');
|
|
14
|
+
const child_process = require('child_process');
|
|
15
|
+
child_process.spawnSync(turbo_exe, process.argv.slice(2), { stdio: 'inherit' });
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@turbo/windows-64",
|
|
3
|
+
"version": "2.8.18-canary.3",
|
|
4
|
+
"description": "The windows-x64 binary for turbo, a monorepo build system.",
|
|
5
|
+
"repository": "https://github.com/vercel/turborepo",
|
|
6
|
+
"bugs": "https://github.com/vercel/turborepo/issues",
|
|
7
|
+
"homepage": "https://turborepo.dev",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"os": [
|
|
10
|
+
"win32"
|
|
11
|
+
],
|
|
12
|
+
"cpu": [
|
|
13
|
+
"x64"
|
|
14
|
+
],
|
|
15
|
+
"preferUnplugged": true,
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
}
|
|
19
|
+
}
|