Skip to content

Commit

Permalink
Further browser support fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Woedenaz committed Mar 19, 2019
1 parent 8b19334 commit 3d67779
Show file tree
Hide file tree
Showing 13 changed files with 2,733 additions and 1,763 deletions.
5 changes: 5 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Browsers that we support

last 5 versions
> 1%
IE 6-10 # sorry
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.swp

*.map
*.bak

temp.css-e
.DS_Store
.stylelintrc
.browserlistrc
14 changes: 14 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const gulp = require('gulp');
const sourcemaps = require('gulp-sourcemaps');
const autoprefixer = require('gulp-autoprefixer');

gulp.task('default', () =>
gulp.src('styles/*.css')
.pipe(sourcemaps.init())
.pipe(autoprefixer({
browsers: ['last 50 versions'],
cascade: true
}))
.pipe(sourcemaps.write('dist/'))
.pipe(gulp.dest('styles/'))
);
21 changes: 0 additions & 21 deletions pxtorem.js

This file was deleted.

Loading

0 comments on commit 3d67779

Please sign in to comment.