summaryrefslogtreecommitdiff
path: root/searx/static/themes/oscar/gruntfile.js
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2019-12-11 15:43:38 +0000
committerGitHub <noreply@github.com>2019-12-11 15:43:38 +0000
commitb0177847f8e04d0465489b9c906b485c6c7d8018 (patch)
treebf99d25bb7e31de03e9ddfc7a903ef0d73f0f815 /searx/static/themes/oscar/gruntfile.js
parent50e1fcaa5e7369a64829552fc96cd24c787706c9 (diff)
parenta3b5f3230c4c7a0305cc3d603550cee57205c1e0 (diff)
Merge pull request #1763 from return42/dos2unix
themes: remove CR from newlines
Diffstat (limited to 'searx/static/themes/oscar/gruntfile.js')
-rw-r--r--searx/static/themes/oscar/gruntfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/static/themes/oscar/gruntfile.js b/searx/static/themes/oscar/gruntfile.js
index 591399449..def035dba 100644
--- a/searx/static/themes/oscar/gruntfile.js
+++ b/searx/static/themes/oscar/gruntfile.js
@@ -24,7 +24,7 @@ module.exports = function(grunt) {
jshint: {
files: ['gruntfile.js', 'js/searx_src/*.js'],
options: {
- reporterOutput: "",
+ reporterOutput: "",
// options here to override JSHint defaults
globals: {
jQuery: true,
@@ -55,7 +55,7 @@ module.exports = function(grunt) {
"css/logicodev-dark.min.css": "less/logicodev-dark/oscar.less"}
},
/*
- // built with ./manage.sh styles
+ // built with ./manage.sh styles
bootstrap: {
options: {
paths: ["less/bootstrap"],
@@ -90,7 +90,7 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['jshint']);
grunt.registerTask('default', ['jshint', 'concat', 'uglify', 'less']);
-
+
grunt.registerTask('styles', ['less']);
};