TypeStrong / grunt-typedoc

Grunt plugin to generate TypeScript docs with TypeDoc
MIT License
17 stars 29 forks source link

Line is too long #19

Open blackat opened 8 years ago

blackat commented 8 years ago

Hi, I have this configuration for the plugin

typedoc: {
  build: {
    options: {
      module: 'commonjs',
      out: './typedoc',
      name: 'Riskpro Angular UI',
      target: 'es5',
      theme: 'default',
      mode: 'file'
    },
    src: './client/app'
}

and when I run grunt doc the execution ends with error The input line is too long.

I have seen there is a pull request for this issue but it does not pass. I am currently using the version 0.2.4 on Window 7/64.

Any help is really appreciated, thanks :wink:

Workaround: I use grunt-exec to run the typedoc command.