The `turbo-windows-arm64` package provides the native, compiled binary executable for Turborepo specifically optimized for Windows machines running on ARM64 architecture. It is an internal dependency of the main `turborepo` npm package, which acts as a shim to select and execute the correct platform-specific binary. Users typically install the `turborepo` package, and `npm` or `pnpm` automatically resolves and installs this artifact when on a compatible system. The current stable version of this specific binary package is `2.8.17`, corresponding to a particular `turborepo` release, though Turborepo itself releases frequently, including canary builds (e.g., v2.9.x at time of writing). Its primary differentiation is enabling optimal performance of Turborepo on modern ARM-based Windows devices by providing a native, pre-compiled binary.
npm install turbo-windows-arm64Verified import paths — ran on the pinned version, not inferred.
Demonstrates the typical setup of a Turborepo monorepo, defining a `turbo.json` pipeline, and executing a `turbo build` command. This uses the underlying `turbo-windows-arm64` binary if run on a compatible Windows ARM64 machine.
Consult the official Turborepo documentation and release notes for the specific version you are upgrading to and update your `turbo.json` file accordingly. Use `turbo prune` if having issues with build caching.
If experiencing Vercel auth issues, ensure your `turborepo` package is up-to-date and re-authenticate using the latest `turbo login` command or the device flow provided by Vercel. Check Turborepo's GitHub for recent fixes related to auth token recovery and compatibility.
Refer to the official Turborepo documentation for the recommended and minimum supported Node.js versions. Upgrade your Node.js environment if it falls below these requirements.
Ensure `npm install -g turborepo` completed successfully. If using a package manager like `pnpm` or `yarn` for global installs, ensure their global bin directories are added to your system's PATH. On Windows, you might need to restart your terminal or machine after adjusting PATH variables.
Remove `turbo-windows-arm64` from your dependencies. Install only the main `turborepo` package (`npm install turborepo` or `pnpm add turborepo`), and it will automatically pull the correct architecture-specific binary for your system.
Review your `turbo.json` file to ensure all inputs and outputs for the failing task are correctly defined. Check your build scripts for any non-deterministic operations (e.g., timestamp generation, random numbers, external API calls not treated as inputs). Ensure all dependencies are correctly listed in `package.json` and installable.
No dependency data recorded yet.