@turbo/workspaces
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

@turbo/workspaces

Easily convert your repo between package managers. Supports both non-monorepos and monorepos (using package manager workspaces).

CLI

Usage: @turbo/workspaces [options] [command]

Tools for working with package manager workspaces

Options:
  -v, --version                               output the current version
  -h, --help                                  display help for command

Commands:
  convert [options] [path] [package-manager]  Convert project between workspace managers
  summary [path]                              Display a summary of the specified project
  help [command]                              display help for command

Node API

Methods are also available via the Node API:

import { convert, getWorkspaceDetails } from "@turbo/workspaces";

// detect the package manager
const project = getWorkspaceDetails({
  root: process.cwd(),
});

// if the package manager is not pnpm, convert to pnpm
if (project.packageManager !== "pnpm") {
  await convert({
    root: process.cwd(),
    to: "pnpm",
    options: {
      dry: false,
      install: true,
    },
  });
}

For more information about Turborepo, visit turbo.build/repo and follow us on X (@turborepo)!

Readme

Keywords

none

Package Sidebar

Install

npm i @turbo/workspaces

Weekly Downloads

167,918

Version

2.0.1

License

MIT

Unpacked Size

406 kB

Total Files

10

Last publish

Collaborators

  • turbobot
  • jaredpalmer