From 2af2b4f0bea861508e4297212d0bea4583ff356e Mon Sep 17 00:00:00 2001 From: Aftab Ansari Date: Wed, 17 Feb 2016 22:47:17 +0530 Subject: [PATCH] Update using-grunt.rst All are grunt package/plugin which runs under NodeJs. --- aspnet/client-side/using-grunt.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aspnet/client-side/using-grunt.rst b/aspnet/client-side/using-grunt.rst index f1b58d7077..4f5f8534d0 100644 --- a/aspnet/client-side/using-grunt.rst +++ b/aspnet/client-side/using-grunt.rst @@ -17,11 +17,11 @@ This example uses the Empty ASP.NET 5 project template as its starting point, to The finished example cleans the target deployment directory, combines JavaScript files, checks code quality, condenses JavaScript file content and deploys to the root of your web application. We will use the following packages: - **grunt**: The Grunt task runner package. -- **grunt-contrib-clean**: A task that removes files or directories. -- **grunt-contrib-jshint**: A task that reviews JavaScript code quality. -- **grunt-contrib-concat**: A task that joins files into a single file. -- **grunt-contrib-uglify**: A task that minifies JavaScript to reduce size. -- **grunt-contrib-watch**: A task that watches file activity. +- **grunt-contrib-clean**: A plugin that removes files or directories. +- **grunt-contrib-jshint**: A plugin that reviews JavaScript code quality. +- **grunt-contrib-concat**: A plugin that joins files into a single file. +- **grunt-contrib-uglify**: A plugin that minifies JavaScript to reduce size. +- **grunt-contrib-watch**: A plugin that watches file activity. Preparing the application -------------------------