chore: add dartdoc compliance checks to build

Closes #3582
This commit is contained in:
Yegor Jbanov
2015-08-06 15:07:33 -07:00
committed by Yegor
parent 5a405011de
commit 280d8f3148
5 changed files with 58 additions and 6 deletions

View File

@ -8,6 +8,7 @@ module.exports.detect = function(gulp) {
if (process.platform === 'win32') {
DART_SDK = {
ANALYZER: 'dartanalyzer.bat',
DARTDOCGEN: 'dartdocgen.bat',
DARTFMT: 'dartfmt.bat',
PUB: 'pub.bat',
VM: 'dart.exe'
@ -15,6 +16,7 @@ module.exports.detect = function(gulp) {
} else {
DART_SDK = {
ANALYZER: 'dartanalyzer',
DARTDOCGEN: 'dartdocgen',
DARTFMT: 'dartfmt',
PUB: 'pub',
VM: 'dart'