benchmark.config.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. module.exports = {
  2. current: {
  3. // src is used to build list of less files to compile
  4. src: [
  5. "benchmark/benchmark.less"
  6. ],
  7. options: {
  8. helpers: "benchmark/browseroptions.js",
  9. specs: "benchmark/browserspec.js",
  10. outfile: "tmp/browser/test-runner-benchmark-current.html"
  11. }
  12. },
  13. v3_10_3: {
  14. // src is used to build list of less files to compile
  15. src: [
  16. "benchmark/benchmark.less"
  17. ],
  18. options: {
  19. helpers: "benchmark/browseroptions.js",
  20. specs: "benchmark/browserspec.js",
  21. outfile: "tmp/browser/test-runner-benchmark-v3_10_3.html",
  22. less: "https://cdnjs.cloudflare.com/ajax/libs/less.js/3.10.3/less.min.js"
  23. }
  24. },
  25. v3_9_0: {
  26. // src is used to build list of less files to compile
  27. src: [
  28. "benchmark/benchmark.less"
  29. ],
  30. options: {
  31. helpers: "benchmark/browseroptions.js",
  32. specs: "benchmark/browserspec.js",
  33. outfile: "tmp/browser/test-runner-benchmark-v3_9_0.html",
  34. less: "https://cdnjs.cloudflare.com/ajax/libs/less.js/3.9.0/less.min.js"
  35. }
  36. },
  37. v2_7_3: {
  38. // src is used to build list of less files to compile
  39. src: [
  40. "benchmark/benchmark.less"
  41. ],
  42. options: {
  43. helpers: "benchmark/browseroptions.js",
  44. specs: "benchmark/browserspec.js",
  45. outfile: "tmp/browser/test-runner-benchmark-v2_7_3.html",
  46. less: "https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.3/less.min.js"
  47. }
  48. }
  49. }