VOOZH about

URL: https://www.nuget.org/packages/FluffySpoon.Publisher.NodeJs/

⇱ NuGet Gallery | FluffySpoon.Publisher.NodeJs 1.165.0




FluffySpoon.Publisher.NodeJs 1.165.0

Prefix Reserved
dotnet add package FluffySpoon.Publisher.NodeJs --version 1.165.0
 
 
NuGet\Install-Package FluffySpoon.Publisher.NodeJs -Version 1.165.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluffySpoon.Publisher.NodeJs" Version="1.165.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluffySpoon.Publisher.NodeJs" Version="1.165.0" />
 
Directory.Packages.props
<PackageReference Include="FluffySpoon.Publisher.NodeJs" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FluffySpoon.Publisher.NodeJs --version 1.165.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FluffySpoon.Publisher.NodeJs, 1.165.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FluffySpoon.Publisher.NodeJs@1.165.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FluffySpoon.Publisher.NodeJs&version=1.165.0
 
Install as a Cake Addin
#tool nuget:?package=FluffySpoon.Publisher.NodeJs&version=1.165.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

FluffySpoon.Publishers

Publishes NuGet and NPM packages to the respective repositories.

Usage

You can also see a command-line runnable version of the following example here.

The code below will:

  • Find all repositories in https://github.com/ffMathy that start with FluffySpoon. and have been modified within the past 30 days.
  • For each repository, sorted by update date descending:
    • Determine the version of the package. The version used will be 1.0.<number of commits in repository>.
    • For each C# project found in the src folder of the root of the repository:
      • Build src/<ProjectName> using dotnet build.
      • Test src/<ProjectName>.Tests if present using dotnet test.
      • Publish to NuGet if tests pass or no tests were present.
    • For each NodeJS project found in the src folder of the root of the repository:
      • Build the root directory using npm run build.
      • Test the root directory using npm run test.
      • Publish to NPM.
  • For each C# project, publish it to NuGet.
  • For each NodeJS project, publish it to NPM.
class Program
{
 static void Main()
 {
 var services = new ServiceCollection();

 //configure the publisher to take all GitHub repositories starting with "FluffySpoon."
 services.AddRepositoryToPackagePublisher("FluffySpoon.");

 //configure the publisher to use specific credentials for GitHub
 services.AddGitHubProviderForAccessToken("ffMathy", "my GitHub access token");

 //configure NuGet publishing
 services.AddNuGetProvider("my NuGet API key");

 //configure NPM publishing
 services.AddNpmProvider("my NPM key");

 //configure .NET Core project support
 services.AddDotNetProvider();

 //configure NodeJS project support
 services.AddNodeJsProvider();

 var provider = services.BuildServiceProvider();

 var publisher = provider.GetRequiredService<IRepositoryToPackagePublisher>();
 publisher.RefreshAllPackagesFromAllRepositoriesAsync().Wait();

 Console.WriteLine("All done!");
 }
}

Running in GitHub Actions

Below is an example of running the sample code on an GitHub Actions using environment variables.

dotnet.yml

name: .NET

on:
 push:
 schedule:
 - cron: '0 * * * *'
 
jobs:
 build:

 runs-on: ubuntu-latest

 steps:
 - uses: actions/checkout@v2
 
 - name: Setup .NET
 uses: actions/setup-dotnet@v1
 with:
 dotnet-version: 6.0.x
 
 - name: Build
 env:
 ProjectNamePrefix: FluffySpoon.
 GitHubUsername: ffMathy
 NuGetKey: ${{ secrets.NuGetKey }}
 NpmAuthToken: ${{ secrets.NpmAuthToken }}
 GitHubPersonalAccessToken: ${{ secrets.GitHubPersonalAccessToken }}
 run: |
 cd src
 dotnet restore
 dotnet build
 cd FluffySpoon.Publisher.Sample
 dotnet run

Running in AppVeyor

Below is an example of running the sample code on an AppVeyor build server using environment variables.

AppVeyor.yml

version: 1.0.{build}
image: Visual Studio 2017
environment:
 NuGetKey:
 secure: 14GsJ75nn9jwVPMQXN7qN8xrwhyAY8TwIvvsQ+P1yzahdtfl83J8cyN+aA9WhtSY
 ProjectNamePrefix: FluffySpoon.
 GitHubUsername: ffMathy
 NpmAuthToken:
 secure: dg3EnwKFzX5E40SPkoPK53pW2D2W5sjCGV4xhORTCoe50OEASg8Xk9mI12SBVadI
 GitHubPersonalAccessToken:
 secure: ECBBXkriJnyuksnl3PYf7PQ/WLyRZLXf9qgLyIlOIeh4e8EnYCX5gkgmyyO1/HR+
install:
- ps: |
 Install-Product node '' x64
 npm install typescript -g
build_script:
- cmd: |
 cd src
 dotnet restore
 dotnet build
 cd FluffySpoon.Publisher.Sample
 dotnet run
Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FluffySpoon.Publisher.NodeJs:

Package Downloads
FluffySpoon.Publisher.Npm

Publishes NPM or NuGet packages automatically.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.165.0 1,695 1/13/2024
1.164.0 267 1/13/2024
1.163.0 1,870 4/17/2023
1.158.0 468 3/4/2023
1.157.0 525 2/24/2023
1.155.0 461 2/22/2023
1.154.0 429 2/21/2023
1.153.0 653 11/8/2022
1.152.0 1,288 5/4/2022
1.151.0 1,013 3/12/2022
1.150.0 624 3/12/2022
1.148.0 647 3/12/2022
1.147.0 646 3/12/2022
1.146.0 657 3/12/2022
1.145.0 652 3/12/2022
1.138.0 647 3/12/2022
1.111.0 13,307 11/27/2019
1.110.0 790 11/27/2019
1.109.0 1,367 11/1/2019
1.108.0 7,698 1/13/2019
Loading failed