]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - Gruntfile.js
Force user-agent for .slashdot.org
[github/wallabag/wallabag.git] / Gruntfile.js
index e52cd16f472cafcf3fc9a6f2e4700ccf9e7f354d..72a407f921c9346421a98a219bcce8285103a4c3 100644 (file)
@@ -10,10 +10,6 @@ module.exports = function (grunt) {
     postcss: {
       material: {
         options: {
-          map: {
-            inline: false,
-          },
-
           processors: [
             require('pixrem')(),
             require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -25,10 +21,6 @@ module.exports = function (grunt) {
       },
       baggy: {
         options: {
-          map: {
-            inline: false,
-          },
-
           processors: [
             require('pixrem')(),
             require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -95,19 +87,13 @@ module.exports = function (grunt) {
         files: {
           '<%= releaseDir %>/themes/material/js/material.min.js':
             ['<%= buildDir %>/material.browser.js'],
-        },
-        options: {
-          sourceMap: true,
-        },
+        }
       },
       baggy: {
         files: {
           '<%= releaseDir %>/themes/baggy/js/baggy.min.js':
             ['<%= buildDir %>/baggy.browser.js'],
-        },
-        options: {
-          sourceMap: true,
-        },
+        }
       },
     },
     copy: {
@@ -234,6 +220,6 @@ module.exports = function (grunt) {
   grunt.registerTask(
       'tests',
       'Test css and js style conformity',
-      ['eslint', 'stylelint']
+      ['eslint', 'stylelint', 'default']
   )
 };