/cake-yarn

A set of aliases for Cake to help with running Yarn (node package manager from Facebook) commands

Primary LanguageC#MIT LicenseMIT

cake-yarn

NuGet Build status

Usage

    #addin "Cake.Yarn"

    Task("Yarn")
        .Does(() =>
        {
            // yarn install
            Yarn.Install();

            // yarn global add gulp
            Yarn.Add(settings => settings.Package("gulp").Globally());

            // yarn add gulp
            Yarn.Add(settings => settings.Package("gulp"));
        });

    Task("Yarn-FromPath")
        .Does(() =>
        {
            // Yarn.FromPath(DirectoryPath).

            // yarn global add gulp (from path ./wwwroot)
            Yarn.FromPath("./wwwroot").Add(settings => settings.Package("gulp").Globally());

            // yarn add gulp (from parent path)
            Yarn.FromPath("../").Add(settings => settings.Package("gulp"));
        });

    Task("Yarn-RunScript")
        .Does(() =>
        {
            Yarn.RunScript("test");
        });

    Task("Yarn-Pack")
        .Does(() =>
        {
            Yarn.Pack();
        });

    Task("Yarn-Version")
        .Does(() =>
        {
            // yarn version
            Yarn.Version();

            // yarn version --new-version 0.1.0
            Yarn.Version(settings => settings.SetVersion("0.1.0"));
        });

Scope

Cake.Yarn currently supports the following yarn commands:

  • yarn install
  • yarn add
  • yarn run
  • yarn pack
  • yarn version

My primary goal for the project is to support the build workflow I need as a .NET developer, additional features have been contributed

Documentation

Thanks to the cakebuild.net site, documentation can be found here

Tests

Cake.Yarn is covered by a set of unit tests

I can't do insert-command-here

If you have feature requests please submit them as issues, or better yet as pull requests :)