Skip to content

Commit

Permalink
Merge pull request #336 from hannu/fix-demo-typo
Browse files Browse the repository at this point in the history
Fix typo in demo gulp file
  • Loading branch information
varya committed Dec 10, 2014
2 parents 7f55c8c + ab51d92 commit 7ad59a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demo-gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
var gulp = require('gulp'),
styleguide = require('./lib/styleguide'),
source = 'lib/app/**/*.scss',
ouputPath = 'demo-output';
outputPath = 'demo-output';

gulp.task('styleguide', ['static'], function() {
return gulp.src(source)
.pipe(styleguide({
title: 'SC5 Styleguide',
server: true,
rootPath: ouputPath,
rootPath: outputPath,
overviewPath: 'README.md',
styleVariables: 'lib/app/sass/_styleguide_variables.scss',
sass: {
Expand All @@ -28,12 +28,12 @@ gulp.task('styleguide', ['static'], function() {
}
]
}))
.pipe(gulp.dest(ouputPath));
.pipe(gulp.dest(outputPath));
});

gulp.task('static', function() {
gulp.src(['lib/demo/**'])
.pipe(gulp.dest(ouputPath + '/demo'));
.pipe(gulp.dest(outputPath + '/demo'));
});

gulp.task('watch', ['styleguide'], function() {
Expand Down

0 comments on commit 7ad59a8

Please sign in to comment.