Book Image

Grunt Cookbook

By : Jurie-Jan Botha
Book Image

Grunt Cookbook

By: Jurie-Jan Botha

Overview of this book

<p>A web application can quickly turn into a complex orchestration of many smaller components, each one requiring its own bit of maintenance. Grunt allows you to automate all the repetitive tasks required to get everything working together by using JavaScript, the most popular programming language.</p> <p>Grunt Cookbook offers a host of easy-to-follow recipes for automating repetitive tasks in your web application's development, management, and deployment processes. This book will introduce you to methods that can be used to automate basic processes and your favorite tools. By following the recipes, you will soon be comfortable using Grunt to perform a wide array of advanced tasks in a range of different scenarios.</p>
Table of Contents (17 chapters)
Grunt Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Publishing a plugin


Having a plugin published could be your introduction to the world of open source development and collaboration. As a project gains traction in the community and becomes useful to others, you may begin to see contributions being made to the project; contributions such as the fixing of issues and implementing of features that you may or may not have had on your roadmap.

Getting started

In this recipe, we'll publish the project that we've been creating throughout this chapter, culminating with the project from the Adding documentation for a plugin recipe. Be sure to refer to it and its preceding recipes if you'd like to see how we got to this point.

Before we can publish anything to the node package manager registry, we'll need to register as a user with the package hosting service. This can be done at https://www.npmjs.com/signup.

How to do it...

The following steps take us through publishing our plugin project to the node package manager registry:

  1. To start with, we'll need...