Socket
Book a DemoInstallSign in
Socket

shipit-yarn

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shipit-yarn

yarn tasks for shipit.

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
77
8.45%
Maintainers
1
Weekly downloads
 
Created
Source

shipit-yarn

A set of tasks for Shipit used for yarn specific tasks on deploy.

Heavily inspired by the shipit-npm extension by callerc1. It started as a fork of his repository.

Features:

  • Triggered on the updated or fetched event from shipit-deploy
  • Has a direct pass through task to yarn cli
  • Works via shipit-cli and grunt-shipit

Install

npm install shipit-yarn --save-dev    # or yarn add -D shipit-yarn

Usage

Run: (This triggers the yarn task on the deploy updated or fetched event. No additional config necessary.)

shipit staging deploy

Or you can run the tasks separatly :

shipit staging yarn:init yarn:install
shipit staging yarn:run --cmd "update"

Options shipit.config.yarn

yarn.remote

Type: Boolean Default: true

A Boolean to determine whether to run the task in local workspace or on the remote.

yarn.installArgs

Type: Array or String Default: []

An array or string specifying yarn args passed to the yarn install cmd.

yarn.installFlags

Type: Array or String Default: []

An array or string specifying yarn flags passed to the yarn install cmd.

yarn.triggerEvent

Type: String,Boolean Default: updated or fetched (depending on yarn.remote value)

An event name that triggers yarn:install. Can be set to false to prevent the yarn:install task from listening to any events. yarn install cmd.

yarn.yarnOrNpm

Type: String Default: yarn

Determine which package manager should be used. Can be yarn, npm or best (try with yarn and fallback to npm if yarn is unavailable).

yarn.cmd

Type: String Default: '' (empty string)

A string specifying the command to be run by the yarn:cmd task (e.g. 'run build') overridden if the --cmd argument is set on the command line.

Example shipitfile.js options usage

module.exports = function (shipit) {
  require('shipit-deploy')(shipit);
  require('shipit-yarn')(shipit);

  shipit.initConfig({
    default: {
      yarn: {
        remote: true,
        installFlags: ['--production']
      }
    }
  });
};

Workflow tasks

  • yarn
    • yarn:init
      • Emit event "yarn_inited".
    • yarn:install
      • Runs yarn install (with any Args yarn.installArgs or Flags yarn.installFlags defined in options)
      • Emit event "yarn_installed"
    • yarn:run
      • Runs yarn command.
Event flow:
  • on Event "deploy" (shipit-deploy initialized)
    • Runs yarn:init
    • on Event "yarn_inited"
      • Runs yarn:install (Triggered on the updated or fetched event from shipit-deploy or by a custom yarn.triggerEvent as mentioned above.)

License

MIT

Keywords

shipit

FAQs

Package last updated on 31 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.