exec.js 134 B

12345678910
  1. 'use strict';
  2. module.exports = function(grunt) {
  3. return {
  4. build_docs: {
  5. cmd: 'sphinx-build docs docs/_build'
  6. }
  7. }
  8. }