turbo 2.4.3 → 2.4.5-canary.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/bin/turbo +1 -1
- package/package.json +7 -7
package/bin/turbo
CHANGED
|
@@ -170,7 +170,7 @@ function getBinaryPath() {
|
|
|
170
170
|
|
|
171
171
|
// Has the wrong platform's binaries available.
|
|
172
172
|
const availableBinaries = availablePlatforms.map(platform => availableArchs.map(arch => `turbo-${platform}-${arch}/bin/turbo${platform === 'windows' ? '.exe' : ''}`)).flat();
|
|
173
|
-
const definitelyWrongBinaries = availableBinaries.filter(binary => binary !== correctBinary
|
|
173
|
+
const definitelyWrongBinaries = availableBinaries.filter(binary => binary !== correctBinary && binary !== alternateBinary);
|
|
174
174
|
const otherInstalled = definitelyWrongBinaries.filter(binaryPath => {
|
|
175
175
|
try {
|
|
176
176
|
return require.resolve(binaryPath);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5-canary.0",
|
|
4
4
|
"description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
|
|
5
5
|
"repository": "https://github.com/vercel/turborepo",
|
|
6
6
|
"bugs": "https://github.com/vercel/turborepo/issues",
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"schema.json"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"turbo-darwin-64": "2.4.
|
|
19
|
-
"turbo-darwin-arm64": "2.4.
|
|
20
|
-
"turbo-linux-64": "2.4.
|
|
21
|
-
"turbo-linux-arm64": "2.4.
|
|
22
|
-
"turbo-windows-64": "2.4.
|
|
23
|
-
"turbo-windows-arm64": "2.4.
|
|
18
|
+
"turbo-darwin-64": "2.4.5-canary.0",
|
|
19
|
+
"turbo-darwin-arm64": "2.4.5-canary.0",
|
|
20
|
+
"turbo-linux-64": "2.4.5-canary.0",
|
|
21
|
+
"turbo-linux-arm64": "2.4.5-canary.0",
|
|
22
|
+
"turbo-windows-64": "2.4.5-canary.0",
|
|
23
|
+
"turbo-windows-arm64": "2.4.5-canary.0"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"postversion": "node bump-version.js"
|