Skip to content

Commit

Permalink
Merge pull request #5 from gronke/sync-upstream
Browse files Browse the repository at this point in the history
Sync upstream repo kristoferjoseph/flexboxgrid
  • Loading branch information
tduarte committed Aug 31, 2015
2 parents f2ce4ef + 85e94ec commit d083a00
Show file tree
Hide file tree
Showing 6 changed files with 277 additions and 365 deletions.
7 changes: 1 addition & 6 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ gulp.task('styles:demo', function () {
includePaths: ['.', 'bower_components'],
onError: console.error.bind(console, 'Sass error:')
}))
.pipe($.postcss([
require('autoprefixer-core')({browsers: ['last 1 version']})
]))
.pipe($.sourcemaps.write())
.pipe(gulp.dest('demo'));
});
Expand All @@ -47,9 +44,6 @@ gulp.task('styles:dist', function () {
includePaths: ['.', 'bower_components'],
onError: console.error.bind(console, 'Sass error:')
}))
.pipe($.postcss([
require('autoprefixer-core')({browsers: ['last 1 version']})
]))
.pipe($.sourcemaps.write())
.pipe(gulp.dest('dist'));
});
Expand All @@ -60,6 +54,7 @@ gulp.task('watch', ['jade:demo', 'styles:demo', 'styles:dist'], function () {
// watch for changes
gulp.watch('demo/*.jade', ['jade:demo']);
gulp.watch('*.scss', ['styles:dist']);
gulp.watch('bower_components/**/*.scss', ['styles:dist']);
gulp.watch('demo/sass/*.scss', ['styles:demo']);
gulp.watch('bower.json', ['wiredep']);
});
Expand Down
75 changes: 55 additions & 20 deletions demo/demo.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/sass/demo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ body {
}

.box, .box-first, .box-large, .box-nested, .box-row {
padding: 0.5rem;
padding: 1rem;
}

.box-row {
Expand Down
Loading

0 comments on commit d083a00

Please sign in to comment.