LinuxCommandLibrary

grunt

JavaScript task runner

TLDR

Run the default task process

$ grunt
copy


Run one or more specific space-separated task(s)
$ grunt [task_name]
copy


Specify an alternative configuration file
$ grunt --gruntfile [path/to/file]
copy


Specify an alternative base path for relative files
$ grunt --base [path/to/directory]
copy


Specify an additional directory to scan for tasks in
$ grunt --tasks [path/to/directory]
copy


Perform a dry-run without writing any files
$ grunt --no-write
copy


List all available options
$ grunt --help
copy

Copied to clipboard