tldr/pages/common/grunt.md

33 lines
594 B
Markdown
Raw Normal View History

2018-02-09 09:56:45 +00:00
# grunt
> A JavaScript task runner for automating processes.
> More information: <https://github.com/gruntjs/grunt-cli>.
2018-02-09 09:56:45 +00:00
- Run the default task process:
`grunt`
- Run one or more tasks:
2018-02-09 09:56:45 +00:00
`grunt {{task1 task2 ...}}`
2018-02-09 09:56:45 +00:00
- 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`
- Display help:
2018-02-09 09:56:45 +00:00
`grunt --help`