Gruntfile.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. module.exports = function(grunt) {
  2. "use strict";
  3. grunt.initConfig({
  4. pkg: grunt.file.readJSON("package.json"),
  5. bowercopy: {
  6. options: {
  7. clean: true
  8. },
  9. test: {
  10. options: {
  11. destPrefix: "test/lib"
  12. },
  13. files: {
  14. "qunit.js" : "qunit/qunit/qunit.js",
  15. "qunit.css" : "qunit/qunit/qunit.css",
  16. "require.js" : "requirejs/require.js"
  17. }
  18. }
  19. },
  20. uglify: {
  21. all: {
  22. files: {
  23. "<%= pkg.name %>.min.js": [ "<%= pkg.name %>.js" ],
  24. "lib/alea.min.js": [ "lib/alea.js" ],
  25. "lib/tychei.min.js": [ "lib/tychei.js" ],
  26. "lib/xor4096.min.js": [ "lib/xor4096.js" ],
  27. "lib/xorshift7.min.js": [ "lib/xorshift7.js" ],
  28. "lib/xorwow.min.js": [ "lib/xorwow.js" ],
  29. "lib/xor128.min.js": [ "lib/xor128.js" ]
  30. },
  31. options: {
  32. preserveComments: false,
  33. report: "min",
  34. beautify: {
  35. ascii_only: true
  36. }
  37. }
  38. }
  39. },
  40. qunit: {
  41. options: {
  42. noGlobals: true,
  43. httpBase: 'http://localhost:8192'
  44. },
  45. all: ["test/*.html"]
  46. },
  47. connect: {
  48. server: {
  49. options: {
  50. port: 8192,
  51. base: '.'
  52. }
  53. }
  54. },
  55. browserify: {
  56. test: {
  57. files: {
  58. 'test/browserified.js': ['test/nodetest.js'],
  59. },
  60. options: {
  61. ignore: ['requirejs', 'process'],
  62. alias: {
  63. 'assert': './test/qunitassert.js'
  64. }
  65. }
  66. }
  67. },
  68. mochacov: {
  69. options: {
  70. files: [
  71. 'test/cryptotest.js',
  72. 'test/nodetest.js',
  73. 'test/prngtest.js'
  74. ]
  75. },
  76. coverage: {
  77. options: {
  78. coveralls: true
  79. }
  80. },
  81. test: {
  82. options: {
  83. reporter: 'dot'
  84. }
  85. }
  86. },
  87. release: {
  88. options: {
  89. bump: false
  90. }
  91. }
  92. });
  93. grunt.loadNpmTasks('grunt-bowercopy');
  94. grunt.loadNpmTasks('grunt-contrib-connect');
  95. grunt.loadNpmTasks('grunt-contrib-qunit');
  96. grunt.loadNpmTasks('grunt-contrib-uglify');
  97. grunt.loadNpmTasks('grunt-mocha-cov');
  98. grunt.loadNpmTasks('grunt-release');
  99. grunt.loadNpmTasks('grunt-browserify');
  100. grunt.registerTask("test",
  101. ["browserify", "connect", "qunit", "mochacov:test"]);
  102. grunt.registerTask("default", ["uglify", "test"]);
  103. grunt.registerTask("travis", ["default", "mochacov:coverage"]);
  104. };