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
|
|
@@ -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
|
|
13
|
-
const
|
|
14
|
-
child_process
|
|
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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo-windows-arm64",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "The
|
|
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