diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-03-30 14:51:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-30 14:51:40 +0000 |
| commit | 949378a07f7baa7ded50f15b386a72e5cd687006 (patch) | |
| tree | a38e004d304de0b2480b50bd36c3f521fbf08546 /searx/static/themes/simple | |
| parent | 9a2f26d915ee05d933a18c31bca2121658aa7ffd (diff) | |
| parent | 1ae39787c1d19a6781ad3d5cb0b2615741d9eb4b (diff) | |
Merge pull request #1900 from return42/issue-1898
export build variables / support brands
Diffstat (limited to 'searx/static/themes/simple')
| -rw-r--r-- | searx/static/themes/simple/.gitignore | 1 | ||||
| -rw-r--r-- | searx/static/themes/simple/gruntfile.js | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/searx/static/themes/simple/.gitignore b/searx/static/themes/simple/.gitignore new file mode 100644 index 000000000..07e6e472c --- /dev/null +++ b/searx/static/themes/simple/.gitignore @@ -0,0 +1 @@ +/node_modules diff --git a/searx/static/themes/simple/gruntfile.js b/searx/static/themes/simple/gruntfile.js index c372ec730..c8f2ed3c6 100644 --- a/searx/static/themes/simple/gruntfile.js +++ b/searx/static/themes/simple/gruntfile.js @@ -36,7 +36,7 @@ module.exports = function(grunt) { }, uglify: { options: { - banner: '/*! simple/searx.min.js | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n', + banner: '/*! simple/searx.min.js | <%= grunt.template.today("dd-mm-yyyy") %> | <%= process.env.GIT_URL %> */\n', output: { comments: 'some' }, @@ -57,7 +57,7 @@ module.exports = function(grunt) { development: { options: { paths: ["less"], - banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n' + banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | <%= process.env.GIT_URL %> */\n' }, files: { "css/searx.css": "less/style.less", @@ -73,7 +73,7 @@ module.exports = function(grunt) { compatibility: '*' }) ], - banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n' + banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | <%= process.env.GIT_URL %> */\n' }, files: { "css/searx.min.css": "less/style.less", |