Skip to content

cake-contrib/Cake.Yarn

Repository files navigation

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 install from path
        Yarn.FromPath("./wwwroot").Install();

        // 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
  • yarn cache
  • yarn remove
  • yarn audit

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 :)

Discussion

For questions and to discuss ideas & feature requests, use the GitHub discussions on the Cake GitHub repository, under the Extension Q&A category.

Join in the discussion on the Cake repository