chore(docgen): Use updated dartdoc tool

Use the new `dartdoc` tool, which
[shipped with 1.12](https://groups.google.com/a/dartlang.org/forum/#!topic/announce/Q1JSlVaFFnY)

Update the sdk constraint to 1.12
This commit is contained in:
Tim Blasi
2015-08-31 09:28:10 -07:00
parent 9619636ba7
commit 0f54ed0306
3 changed files with 7 additions and 7 deletions

View File

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