ohmyzsh/plugins/rushjs
2022-07-25 13:34:01 -04:00
..
README.md Adds RushJS plugin 2022-07-25 13:34:01 -04:00
rushjs.plugin.zsh Adds RushJS plugin 2022-07-25 13:34:01 -04:00

RushJS

This plugin adds aliases for frequent rush commands.

Commands

The commands aliased are non-destructive; non of them ought to create, delete, or modify any non-generated files. There is a convenience alias (rj) where you can add your preferred impactful commands (e.g. rj init, rj update).

Alias Command
rj rush
rji rush install
rjb rush build
rjbv rush build --verbose
rjr rush rebuild
rjrv rush rebuild --verbose
rjcl rush clean
rjp rush purge
rjt rush test
rjtv rush test --verbose
rjc rush check

Installation

Required: You must install the rush monorepo manager yourself before you can use this plugin.

To use it, add rushjs to the plugins array in your .zshrc file:

plugins=(... rushjs)