1. nuget-publish
Publish npm packages to NuGet using package.json
nuget-publish
Package: nuget-publish
Created by: FezVrasta
Last modified: Wed, 11 May 2022 21:52:52 GMT
Version: 1.0.3
License: MIT
Downloads: 190
Repository: https://github.com/FezVrasta/nuget-publish

Install

npm install nuget-publish
yarn add nuget-publish

Nuget Publish

This small utility makes it possible to publish npm packages to NuGet directly using
the metadata provided by your existing package.json.

Usage

Add nuget-publish to the devDependencies of your package:

yarn add --dev nuget-publish

Now you can use the nuget-publish command in your npm scripts to publish your
package to npm. You may add a postpublish script to automatize it:

"scripts": {
    "postpublish": "nuget-publish"
}

Copyright and license

Code and documentation copyright 2016 Federico Zivolo. Code released under the MIT license. Docs released under Creative Commons.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin