From 0fb3744ddd1272f1b5c1fcad71bc7cc8908168ab Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Fri, 9 Feb 2018 09:56:45 +0000 Subject: [PATCH] grunt: add page (#1975) --- pages/common/grunt.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pages/common/grunt.md diff --git a/pages/common/grunt.md b/pages/common/grunt.md new file mode 100644 index 0000000000..23efca85fc --- /dev/null +++ b/pages/common/grunt.md @@ -0,0 +1,31 @@ +# grunt + +> A JavaScript task runner for automating processes. + +- Run the default task process: + +`grunt` + +- Run one or more specific space-separated task(s): + +`grunt {{task_name}}` + +- Specify an alternative configuration file: + +`grunt --gruntfile {{path/to/file}}` + +- Specify an alternative base path for relative files: + +`grunt --base {{path/to/directory}}` + +- Specify an additional directory to scan for tasks in: + +`grunt --tasks {{path/to/directory}}` + +- Perform a dry-run without writing any files: + +`grunt --no-write` + +- List all available options: + +`grunt --help`