Skip to content

Commit

Permalink
Merge pull request #25 from Leadformance/kan
Browse files Browse the repository at this point in the history
fix(android): fix webkit-prefix for android 4
  • Loading branch information
kavrillon authored Jul 12, 2016
2 parents 526bb5a + 17f8c71 commit 6b6320b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/templates/es6/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ module.exports = function (grunt) {
postcss: {
options: {
processors: [
require('autoprefixer')({browsers: ['last 2 versions', 'ie 8', 'ie 9']})
require('autoprefixer')({browsers: ['last 2 versions', 'ie 8', 'ie 9', 'android >= 4']})
]
},
dist: {
Expand Down
2 changes: 1 addition & 1 deletion app/templates/sass/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ module.exports = function (grunt) {
}
},
autoprefixer: {
options: ['last 2 versions', 'ie 8', 'ie 9'],
options: ['last 2 versions', 'ie 8', 'ie 9', 'android >= 4'],
'<%= dirs.temp %>/app.css': ['<%= dirs.temp %>/app.css']
},
scsslint: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "generator-bridge-template",
"private": true,
"version": "4.0.12",
"version": "4.0.13",
"description": "A Yeoman generator and Grunt tasks for Bridge template development",
"homepage": "https://github.com/Leadformance/generator-bridge-template",
"bugs": "https://github.com/Leadformance/generator-bridge-template/issues",
Expand Down

0 comments on commit 6b6320b

Please sign in to comment.