Skip to content

Commit

Permalink
Update gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Alferov committed May 8, 2016
1 parent 0d691ae commit f05d838
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions docs/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ <h2 id="contribution">Contribution</h2>
<p>:octocat: All contributions welcome. Feel free to contribute (<a href="contributing.md">guidelines</a>).</p>
<h2 id="contents">Contents</h2>
<ul>
<li><a href="#legend">Legend</a></li>
<li><a href="#resources">Resources</a><ul>
<li><a href="#general-resources">General Resources</a></li>
<li><a href="#official-documentation">Official Documentation</a></li>
Expand Down Expand Up @@ -92,6 +93,8 @@ <h2 id="contents">Contents</h2>
</li>
<li><a href="#miscellaneous">Miscellaneous</a></li>
</ul>
<h2 id="legend">Legend</h2>
<p>[:no_entry:] - A deprecation notice;</p>
<h2 id="resources">Resources</h2>
<h3 id="general-resources">General Resources</h3>
<ul>
Expand Down Expand Up @@ -188,9 +191,9 @@ <h3 id="transpilation">Transpilation</h3>
<li><a href="https://github.com/babel/gulp-babel">gulp-babel</a> - ES6 → ES5 with <a href="https://github.com/babel/babel">babel</a>.</li>
<li><a href="https://github.com/sindresorhus/gulp-traceur">gulp-traceur</a> - ES6 → ES5 using <a href="https://github.com/google/traceur-compiler">Traceur</a>.</li>
<li><a href="https://github.com/sindresorhus/gulp-regenerator">gulp-regenerator</a> - ES6 → ES5 with <a href="https://github.com/facebook/regenerator">Regenerator</a>.</li>
<li><a href="https://github.com/sindresorhus/gulp-es6-transpiler">gulp-es6-transpiler</a> - [Deprecated] ES6 → ES5 with <a href="https://github.com/termi/es6-transpiler">es6-transpiler</a>.</li>
<li><a href="https://github.com/sindresorhus/gulp-es6-transpiler">gulp-es6-transpiler</a> - [:no_entry:] ES6 → ES5 with <a href="https://github.com/termi/es6-transpiler">es6-transpiler</a>.</li>
<li><a href="https://github.com/sindresorhus/gulp-myth">gulp-myth</a> - <a href="https://github.com/segmentio/myth">Myth</a> - a polyfill for future versions of the CSS spec.</li>
<li><a href="https://github.com/MoOx/gulp-cssnext">gulp-cssnext</a> - [Deprecated] Use tomorrow&#39;s CSS syntax, today, using <a href="https://github.com/MoOx/postcss-cssnext">cssnext</a>.</li>
<li><a href="https://github.com/MoOx/gulp-cssnext">gulp-cssnext</a> - [:no_entry:] Use tomorrow&#39;s CSS syntax, today, using <a href="https://github.com/MoOx/postcss-cssnext">cssnext</a>.</li>
</ul>
<h3 id="concatenation">Concatenation</h3>
<ul>
Expand Down Expand Up @@ -300,12 +303,13 @@ <h3 id="miscellaneous-plugins">Miscellaneous Plugins</h3>
<li><a href="https://github.com/jonkemp/gulp-inline-css">gulp-inline-css</a> - Inline your CSS properties into the style attribute in an HTML file.</li>
<li><a href="https://github.com/shinnn/gulp-gh-pages">gulp-gh-pages</a> - Publish contents to Github pages.</li>
<li><a href="https://github.com/Kagami/gulp-ng-annotate">gulp-ng-annotate</a> - Add AngularJS dependency injection annotations with <a href="https://github.com/olov/ng-annotate">ng-annotate</a>.</li>
<li><a href="https://github.com/stevelacy/gulp-bump">gulp-bump</a> - Bump any semvar JSON version.</li>
<li><a href="https://github.com/stevelacy/gulp-bump">gulp-bump</a> - Bump any semver JSON version.</li>
<li><a href="https://github.com/coderhaoxin/gulp-file-include">gulp-file-include</a> - Include files with gulp.</li>
<li><a href="https://github.com/sindresorhus/gulp-zip">gulp-zip</a> - ZIP compress files.</li>
<li><a href="https://github.com/stevelacy/gulp-git">gulp-git</a> - Run Git commands with gulp.</li>
<li><a href="https://github.com/sindresorhus/gulp-filter">gulp-filter</a> - Filter files in a vinyl stream using globbing.</li>
<li><a href="https://github.com/jas/gulp-preprocess">gulp-preprocess</a> - Preprocess files based on custom context or environment configuration.</li>
<li>[gulp-eval] (<a href="https://github.com/gulp-bem/gulp-eval">https://github.com/gulp-bem/gulp-eval</a>) - Eval JS-expression or require CommonJS modules and JSON files.</li>
</ul>
<h2 id="scaffolding">Scaffolding</h2>
<h3 id="boilerplates">Boilerplates</h3>
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ gulp.task('watch', () => {
* Publish to gh-pages
*/
gulp.task('gh-pages', () => {
return gulp.src(config.dist + '/**/*.*')
return gulp.src(config.dist + '/**/*')
.pipe($.ghPages());
});

Expand Down

0 comments on commit f05d838

Please sign in to comment.