0.2.0 • Published 4 years ago

yarn-knit v0.2.0

Weekly downloads
328
License
MIT
Repository
github
Last release
4 years ago

yarn-knit

Intelligently build workspace dependencies.

knit dependencies

Build workspace dependencies for the current package

Example:

{
  "scripts": {
    "start": "knit dependencies && react-scripts start"
  },
  "devDependencies": {
    "yarn-knit": "*"
  }
}

knit workspace

Build workspace dependencies for the entire workspace

Example:

{
  "private": true,
  "workspaces": ["packages/*"],
  "scripts": {
    "build": "knit workspace"
  },
  "devDependencies": {
    "yarn-knit": "*"
  }
}