Widen args
dependency to include 1.x.x.
Use path.current
instead of Platform.script
as default dir for root-dir
to work with pub global run
.
Wider args dependency.
Provide executables for pub globally activation.
Ignore .pub
.
Switch to the new deferred loading syntax (needs DartSDK >= 1.6).
Add a generator of index.html files with withIndexGeneration
.
Add utility functions to simplify the publication of examples at root with :
new gh.Generator()
..withExamples = true
..generate(doCustomTask: gh.moveExampleAtRoot);
setExamples
has been replaced by withExamples
.
Use git -f add
to avoid problem with global .gitignore containing packages
Add utility functions to simplify the publication of dartdoc at root with :
new gh.Generator()
..setDartDoc(['lib/ghpages_generator.dart'], includeSdk: false,
excludedLibs: ['path'], startPage: 'ghpages_generator')
..generate(doCustomTask: gh.moveDartDocAtRoot);
- Stable: All even numbered minor versions are considered API stable: i.e.: v1.0.x, v1.2.x, and so on.
- Development: All odd numbered minor versions are considered API unstable: i.e.: v0.9.x, v1.1.x, and so on.