You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.5 KiB

  1. module.exports =
  2. test:[ 'jshint', 'testunit', 'teste2e']
  3. testunit: ['karma']
  4. teste2e:[ 'shell:protractor_update', 'connect:testserver', 'protractor:run']
  5. teste2efirefox:[ 'shell:protractor_update', 'connect:testserver', 'protractor:firefox']
  6. testcoverage: ['karma']
  7. coverage:['karma', 'open:coverage', 'connect:coverage']
  8. install:[ 'shell:npm_install','bower:install','shell:protractor_update']
  9. default:['build']
  10. # cause zsh always puts me in grunt folder
  11. d:['default']
  12. #force:on to keep failing specs from killing grunt
  13. dev:['force:on', 'connect:devserver', 'open:devserver', 'concurrent:dev' ]
  14. #continuos running specs
  15. spec: [ 'fastbuild', 'concurrent:unit' ]
  16. serve:['concurrent:watchServe']
  17. s:['serve']
  18. fastbuild:[ 'clean:dist', 'jshint' ,'babel', 'concat:dist', 'concat:distMapped', 'ngAnnotate']
  19. dwatch:[ 'fastbuild', 'concurrent:unit' ]
  20. build:[ 'fastbuild', 'uglify', 'testunit', 'concat:license', 'clean:pre' ]
  21. travis:[ 'fastbuild', 'bower:install', 'testunit' ]
  22. changelog: ['conventionalChangelog']
  23. 'bump@':[ 'bumponly', 'default', 'changelog', 'bumpcommit' ]
  24. 'bump@minor':[ 'bumponly:minor', 'default', 'changelog', 'bumpcommit' ]
  25. 'bump@major':[ 'bumponly:major', 'default', 'changelog', 'bumpcommit' ]
  26. #To Update examples for Viewer
  27. examples:[ 'shell:examples', 'concat:examples' ]
  28. graph:['angular_architecture_graph']
  29. website:['concurrent:website']