aboutsummaryrefslogtreecommitdiffhomepage
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-10-16 21:05:30 +0200
committerGitHub <noreply@github.com>2016-10-16 21:05:30 +0200
commit3fb409ffc64a36d2d0635673e88036e8780a92e3 (patch)
tree44196777e5526c18999ca756d2e1821fa5e23e44 /Gruntfile.js
parent97512ec4bc507e539fb61024485f84d3ac8c75eb (diff)
parentd32e1c424adb6722706245fe91071594a8c7c826 (diff)
downloadwallabag-3fb409ffc64a36d2d0635673e88036e8780a92e3.tar.gz
wallabag-3fb409ffc64a36d2d0635673e88036e8780a92e3.tar.zst
wallabag-3fb409ffc64a36d2d0635673e88036e8780a92e3.zip
Merge pull request #2454 from wallabag/fix-baggy-small-width
Fix baggy display on small screens
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js18
1 files changed, 2 insertions, 16 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b80ab56d..72a407f9 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -10,10 +10,6 @@ module.exports = function (grunt) {
10 postcss: { 10 postcss: {
11 material: { 11 material: {
12 options: { 12 options: {
13 map: {
14 inline: false,
15 },
16
17 processors: [ 13 processors: [
18 require('pixrem')(), 14 require('pixrem')(),
19 require('autoprefixer')({ browsers: 'last 2 versions' }), 15 require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -25,10 +21,6 @@ module.exports = function (grunt) {
25 }, 21 },
26 baggy: { 22 baggy: {
27 options: { 23 options: {
28 map: {
29 inline: false,
30 },
31
32 processors: [ 24 processors: [
33 require('pixrem')(), 25 require('pixrem')(),
34 require('autoprefixer')({ browsers: 'last 2 versions' }), 26 require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -95,19 +87,13 @@ module.exports = function (grunt) {
95 files: { 87 files: {
96 '<%= releaseDir %>/themes/material/js/material.min.js': 88 '<%= releaseDir %>/themes/material/js/material.min.js':
97 ['<%= buildDir %>/material.browser.js'], 89 ['<%= buildDir %>/material.browser.js'],
98 }, 90 }
99 options: {
100 sourceMap: true,
101 },
102 }, 91 },
103 baggy: { 92 baggy: {
104 files: { 93 files: {
105 '<%= releaseDir %>/themes/baggy/js/baggy.min.js': 94 '<%= releaseDir %>/themes/baggy/js/baggy.min.js':
106 ['<%= buildDir %>/baggy.browser.js'], 95 ['<%= buildDir %>/baggy.browser.js'],
107 }, 96 }
108 options: {
109 sourceMap: true,
110 },
111 }, 97 },
112 }, 98 },
113 copy: { 99 copy: {