Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: third_party/pkg/js/update-ghpages.dart

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 import 'package:ghpages_generator/ghpages_generator.dart' as gh;
2
3 /**
4 * Run this file to update the _gh-pages_ branch with a fresh dartdoc of
5 * the library and examples compiled through dart2js.
6 * Once ran you only have to push the _gh-pages_ branch to github.
7 */
8 main() {
9 new gh.Generator()
10 ..setDartDoc(['lib/js.dart'], excludedLibs: ['metadata'], outDir: 'docs')
11 ..setExamples(true)
12 ..templateDir = 'gh-pages-template'
13 ..generate();
14 }
OLDNEW
« no previous file with comments | « third_party/pkg/js/test/js_wrapping/browser_tests.html ('k') | third_party/pkg/perf_api/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698