turbo-windows-arm64 1.3.3 → 1.4.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.
File without changes
@@ -0,0 +1,3 @@
1
+ # turbo
2
+
3
+ This is a platform-specific binary for turbo, a monorepo build system. See https://github.com/vercel/turborepo for details.
@@ -9,6 +9,7 @@
9
9
  // be slower because node has to boot up just to shell out to the actual exe,
10
10
  // but Windows is somewhat of a second-class platform to npm so it's the best
11
11
  // I can do I think.
12
- const turbo_exe = require.resolve("turbo-windows-arm64/turbo.exe");
13
- const child_process = require("child_process");
14
- child_process.spawnSync(turbo_exe, process.argv.slice(2), { stdio: "inherit" });
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' });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "turbo-windows-arm64",
3
- "version": "1.3.3",
4
- "description": "The Windows ARM 64-bit binary for turbo, a monorepo build system.",
3
+ "version": "1.4.0",
4
+ "description": "The windows-arm64 binary for turbo, a monorepo build system.",
5
5
  "repository": "https://github.com/vercel/turborepo",
6
6
  "bugs": "https://github.com/vercel/turborepo/issues",
7
7
  "homepage": "https://turborepo.org",
@@ -13,4 +13,4 @@
13
13
  "arm64"
14
14
  ],
15
15
  "preferUnplugged": false
16
- }
16
+ }
package/README.md DELETED
@@ -1,3 +0,0 @@
1
- # turbo
2
-
3
- This is the Windows ARM 64-bit binary for turbo, a monorepo build system. See https://github.com/vercel/turborepo for details.