yarn-programmatic
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

Yarn Programmatic API

yarn-programmatic is a library that allows you to access yarn commands programmatically from Javascript.

This is still being developed to map the full feature set of Yarn. Please submit a request on Github if there is a particular command you'd like

Usage

Every function returns a Promise.


yarn.add()

yarn.add(['babel', 'react'], {dev: true});

Arguments

name type value
packages Array List of packages to install
options Object Options object (see below)

Options

name type default value
dev Boolean false Save to devDependencies

yarn.remove()

yarn.remove(['babel', 'react']);

Arguments

name type value
packages Array List of packages to remove

yarn.info()

yarn.info(); // Get info on current package
yarn.info('react'); // Get info on 'react' package

Arguments

name type value
package string Optional package to lookup info for

Readme

Keywords

Package Sidebar

Install

npm i yarn-programmatic

Weekly Downloads

2,160

Version

0.1.2

License

ISC

Unpacked Size

17.8 kB

Total Files

33

Last publish

Collaborators

  • tmatthias