gruntfile.js 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. module.exports = function(grunt) {
  2. const path = require('path');
  3. grunt.initConfig({
  4. pkg: grunt.file.readJSON('package.json'),
  5. watch: {
  6. scripts: {
  7. files: ['<%= jshint.files %>', 'less/*.less'],
  8. tasks: ['jshint', 'concat', 'uglify', 'webfont', 'less:development', 'less:production']
  9. }
  10. },
  11. concat: {
  12. options: {
  13. separator: ';'
  14. },
  15. dist: {
  16. src: ['js/searx_src/*.js'],
  17. dest: 'js/searx.js'
  18. }
  19. },
  20. uglify: {
  21. options: {
  22. banner: '/*! simple/searx.min.js | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n',
  23. preserveComments: 'some',
  24. sourceMap: true
  25. },
  26. dist: {
  27. files: {
  28. 'js/searx.min.js': ['<%= concat.dist.dest %>']
  29. }
  30. }
  31. },
  32. jshint: {
  33. files: ['js/searx_src/*.js'],
  34. options: {
  35. proto: true,
  36. // options here to override JSHint defaults
  37. globals: {
  38. browser: true,
  39. jQuery: false,
  40. devel: true
  41. }
  42. }
  43. },
  44. less: {
  45. development: {
  46. options: {
  47. paths: ["less"],
  48. banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n'
  49. },
  50. files: {
  51. "css/searx.css": "less/style.less",
  52. "css/searx-rtl.css": "less/style-rtl.less"
  53. }
  54. },
  55. production: {
  56. options: {
  57. paths: ["less"],
  58. plugins: [
  59. new (require('less-plugin-clean-css'))({
  60. advanced: true,
  61. compatibility: 'ie8'
  62. })
  63. ],
  64. banner: '/*! searx | <%= grunt.template.today("dd-mm-yyyy") %> | https://github.com/asciimoo/searx */\n'
  65. },
  66. files: {
  67. "css/searx.min.css": "less/style.less",
  68. "css/searx-rtl.min.css": "less/style-rtl.less"
  69. }
  70. },
  71. },
  72. webfont: {
  73. icons: {
  74. // src: 'node_modules/ionicons-npm/src/*.svg',
  75. src: [
  76. 'node_modules/ionicons-npm/src/navicon-round.svg',
  77. 'node_modules/ionicons-npm/src/search.svg',
  78. 'node_modules/ionicons-npm/src/play.svg',
  79. 'node_modules/ionicons-npm/src/link.svg',
  80. 'node_modules/ionicons-npm/src/chevron-up.svg',
  81. 'node_modules/ionicons-npm/src/chevron-left.svg',
  82. 'node_modules/ionicons-npm/src/chevron-right.svg',
  83. 'node_modules/ionicons-npm/src/arrow-down-a.svg',
  84. 'node_modules/ionicons-npm/src/arrow-up-a.svg',
  85. 'node_modules/ionicons-npm/src/arrow-swap.svg',
  86. 'node_modules/ionicons-npm/src/telephone.svg',
  87. 'node_modules/ionicons-npm/src/android-arrow-dropdown.svg',
  88. 'node_modules/ionicons-npm/src/android-globe.svg',
  89. 'node_modules/ionicons-npm/src/android-time.svg',
  90. 'node_modules/ionicons-npm/src/location.svg',
  91. 'node_modules/ionicons-npm/src/alert-circled.svg',
  92. 'node_modules/ionicons-npm/src/android-alert.svg',
  93. 'node_modules/ionicons-npm/src/ios-film-outline.svg',
  94. 'node_modules/ionicons-npm/src/music-note.svg',
  95. 'node_modules/ionicons-npm/src/ion-close-round.svg',
  96. 'node_modules/ionicons-npm/src/android-more-vertical.svg',
  97. 'magnet.svg'
  98. ],
  99. dest: 'fonts',
  100. destLess: 'less',
  101. options: {
  102. font: 'ion',
  103. hashes : true,
  104. syntax: 'bem',
  105. styles : 'font,icon',
  106. types : 'eot,woff2,woff,ttf,svg',
  107. order : 'eot,woff2,woff,ttf,svg',
  108. stylesheets : ['css', 'less'],
  109. relativeFontPath : '../fonts/',
  110. autoHint : false,
  111. normalize : false,
  112. // ligatures : true,
  113. optimize : true,
  114. // fontHeight : 400,
  115. rename : function(name) {
  116. basename = path.basename(name);
  117. if (basename === 'android-alert.svg') {
  118. return 'error.svg';
  119. }
  120. if (basename === 'alert-circled.svg') {
  121. return 'warning.svg';
  122. }
  123. if (basename === 'ion-close-round.svg') {
  124. return 'close.svg';
  125. }
  126. return basename.replace(/(ios|md|android)-/i, '');
  127. },
  128. templateOptions: {
  129. baseClass: 'ion-icon',
  130. classPrefix: 'ion-'
  131. }
  132. }
  133. }
  134. }
  135. });
  136. grunt.loadNpmTasks('grunt-contrib-watch');
  137. grunt.loadNpmTasks('grunt-contrib-uglify');
  138. grunt.loadNpmTasks('grunt-contrib-jshint');
  139. grunt.loadNpmTasks('grunt-contrib-concat');
  140. grunt.loadNpmTasks('grunt-contrib-less');
  141. grunt.loadNpmTasks('grunt-contrib-cssmin');
  142. grunt.loadNpmTasks('grunt-webfont');
  143. grunt.registerTask('test', ['jshint']);
  144. grunt.registerTask('default', ['jshint', 'concat', 'uglify', 'less:development', 'less:production']);
  145. };