Gruntfile.js 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. // Generated on 2014-07-17 using generator-angular 0.9.5
  2. 'use strict';
  3. // # Globbing
  4. // for performance reasons we're only matching one level down:
  5. // 'test/spec/{,*/}*.js'
  6. // use this if you want to recursively match all subfolders:
  7. // 'test/spec/**/*.js'
  8. module.exports = function (grunt) {
  9. // Load grunt tasks automatically
  10. require('load-grunt-tasks')(grunt);
  11. // Time how long tasks take. Can help when optimizing build times
  12. require('time-grunt')(grunt);
  13. // Configurable paths for the application
  14. var appConfig = {
  15. app: require('./bower.json').appPath || 'app',
  16. dist: 'dist'
  17. };
  18. // Define the configuration for all the tasks
  19. grunt.initConfig({
  20. // Project settings
  21. yeoman: appConfig,
  22. // Watches files for changes and runs tasks based on the changed files
  23. watch: {
  24. bower: {
  25. files: ['bower.json'],
  26. tasks: ['wiredep']
  27. },
  28. js: {
  29. files: ['<%= yeoman.app %>/scripts/{,*/}*.js'],
  30. tasks: ['newer:jshint:all'],
  31. options: {
  32. livereload: '<%= connect.options.livereload %>'
  33. }
  34. },
  35. jsTest: {
  36. files: ['test/spec/{,*/}*.js'],
  37. tasks: ['newer:jshint:test', 'karma']
  38. },
  39. styles: {
  40. files: ['<%= yeoman.app %>/styles/{,*/}*.css'],
  41. tasks: ['newer:copy:styles', 'autoprefixer']
  42. },
  43. gruntfile: {
  44. files: ['Gruntfile.js']
  45. },
  46. livereload: {
  47. options: {
  48. livereload: '<%= connect.options.livereload %>'
  49. },
  50. files: [
  51. '<%= yeoman.app %>/{,*/}*.html',
  52. '.tmp/styles/{,*/}*.css',
  53. '<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
  54. ]
  55. }
  56. },
  57. // The actual grunt server settings
  58. connect: {
  59. options: {
  60. port: 9000,
  61. // Change this to '0.0.0.0' to access the server from outside.
  62. hostname: 'localhost',
  63. livereload: 35729
  64. },
  65. livereload: {
  66. options: {
  67. open: true,
  68. middleware: function (connect) {
  69. return [
  70. connect.static('.tmp'),
  71. connect().use(
  72. '/bower_components',
  73. connect.static('./bower_components')
  74. ),
  75. connect.static(appConfig.app)
  76. ];
  77. }
  78. }
  79. },
  80. test: {
  81. options: {
  82. port: 9001,
  83. middleware: function (connect) {
  84. return [
  85. connect.static('.tmp'),
  86. connect.static('test'),
  87. connect().use(
  88. '/bower_components',
  89. connect.static('./bower_components')
  90. ),
  91. connect.static(appConfig.app)
  92. ];
  93. }
  94. }
  95. },
  96. dist: {
  97. options: {
  98. open: true,
  99. base: '<%= yeoman.dist %>'
  100. }
  101. }
  102. },
  103. // Make sure code styles are up to par and there are no obvious mistakes
  104. jshint: {
  105. options: {
  106. jshintrc: '.jshintrc',
  107. reporter: require('jshint-stylish')
  108. },
  109. all: {
  110. src: [
  111. 'Gruntfile.js',
  112. '<%= yeoman.app %>/scripts/{,*/}*.js'
  113. ]
  114. },
  115. test: {
  116. options: {
  117. jshintrc: 'test/.jshintrc'
  118. },
  119. src: ['test/spec/{,*/}*.js']
  120. }
  121. },
  122. // Empties folders to start fresh
  123. clean: {
  124. dist: {
  125. files: [{
  126. dot: true,
  127. src: [
  128. '.tmp',
  129. '<%= yeoman.dist %>/{,*/}*',
  130. '!<%= yeoman.dist %>/.git*'
  131. ]
  132. }]
  133. },
  134. server: '.tmp'
  135. },
  136. // Add vendor prefixed styles
  137. autoprefixer: {
  138. options: {
  139. browsers: ['last 1 version']
  140. },
  141. dist: {
  142. files: [{
  143. expand: true,
  144. cwd: '.tmp/styles/',
  145. src: '{,*/}*.css',
  146. dest: '.tmp/styles/'
  147. }]
  148. }
  149. },
  150. // Automatically inject Bower components into the app
  151. wiredep: {
  152. options: {
  153. cwd: ''
  154. },
  155. app: {
  156. src: ['<%= yeoman.app %>/index.html'],
  157. ignorePath: /\.\.\//
  158. }
  159. },
  160. // Renames files for browser caching purposes
  161. filerev: {
  162. dist: {
  163. src: [
  164. '<%= yeoman.dist %>/scripts/{,*/}*.js',
  165. '<%= yeoman.dist %>/styles/{,*/}*.css',
  166. '<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
  167. '<%= yeoman.dist %>/styles/fonts/*'
  168. ]
  169. }
  170. },
  171. // Reads HTML for usemin blocks to enable smart builds that automatically
  172. // concat, minify and revision files. Creates configurations in memory so
  173. // additional tasks can operate on them
  174. useminPrepare: {
  175. html: '<%= yeoman.app %>/index.html',
  176. options: {
  177. dest: '<%= yeoman.dist %>',
  178. flow: {
  179. html: {
  180. steps: {
  181. js: ['concat', 'uglifyjs'],
  182. css: ['cssmin']
  183. },
  184. post: {}
  185. }
  186. }
  187. }
  188. },
  189. // Performs rewrites based on filerev and the useminPrepare configuration
  190. usemin: {
  191. html: ['<%= yeoman.dist %>/{,*/}*.html'],
  192. css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
  193. options: {
  194. assetsDirs: ['<%= yeoman.dist %>','<%= yeoman.dist %>/images']
  195. }
  196. },
  197. // The following *-min tasks will produce minified files in the dist folder
  198. // By default, your `index.html`'s <!-- Usemin block --> will take care of
  199. // minification. These next options are pre-configured if you do not wish
  200. // to use the Usemin blocks.
  201. // cssmin: {
  202. // dist: {
  203. // files: {
  204. // '<%= yeoman.dist %>/styles/main.css': [
  205. // '.tmp/styles/{,*/}*.css'
  206. // ]
  207. // }
  208. // }
  209. // },
  210. // uglify: {
  211. // dist: {
  212. // files: {
  213. // '<%= yeoman.dist %>/scripts/scripts.js': [
  214. // '<%= yeoman.dist %>/scripts/scripts.js'
  215. // ]
  216. // }
  217. // }
  218. // },
  219. // concat: {
  220. // dist: {}
  221. // },
  222. imagemin: {
  223. dist: {
  224. files: [{
  225. expand: true,
  226. cwd: '<%= yeoman.app %>/images',
  227. src: '{,*/}*.{png,jpg,jpeg,gif}',
  228. dest: '<%= yeoman.dist %>/images'
  229. }]
  230. }
  231. },
  232. svgmin: {
  233. dist: {
  234. files: [{
  235. expand: true,
  236. cwd: '<%= yeoman.app %>/images',
  237. src: '{,*/}*.svg',
  238. dest: '<%= yeoman.dist %>/images'
  239. }]
  240. }
  241. },
  242. htmlmin: {
  243. dist: {
  244. options: {
  245. collapseWhitespace: true,
  246. conservativeCollapse: true,
  247. collapseBooleanAttributes: true,
  248. removeCommentsFromCDATA: true,
  249. removeOptionalTags: true
  250. },
  251. files: [{
  252. expand: true,
  253. cwd: '<%= yeoman.dist %>',
  254. src: ['*.html', 'views/{,*/}*.html'],
  255. dest: '<%= yeoman.dist %>'
  256. }]
  257. }
  258. },
  259. // ngmin tries to make the code safe for minification automatically by
  260. // using the Angular long form for dependency injection. It doesn't work on
  261. // things like resolve or inject so those have to be done manually.
  262. ngmin: {
  263. dist: {
  264. files: [{
  265. expand: true,
  266. cwd: '.tmp/concat/scripts',
  267. src: '*.js',
  268. dest: '.tmp/concat/scripts'
  269. }]
  270. }
  271. },
  272. // Replace Google CDN references
  273. cdnify: {
  274. dist: {
  275. html: ['<%= yeoman.dist %>/*.html']
  276. }
  277. },
  278. // Copies remaining files to places other tasks can use
  279. copy: {
  280. dist: {
  281. files: [{
  282. expand: true,
  283. dot: true,
  284. cwd: '<%= yeoman.app %>',
  285. dest: '<%= yeoman.dist %>',
  286. src: [
  287. '*.{ico,png,txt}',
  288. '.htaccess',
  289. '*.html',
  290. 'views/{,*/}*.html',
  291. 'images/{,*/}*.{webp}',
  292. 'fonts/*'
  293. ]
  294. }, {
  295. expand: true,
  296. cwd: '.tmp/images',
  297. dest: '<%= yeoman.dist %>/images',
  298. src: ['generated/*']
  299. }, {
  300. expand: true,
  301. cwd: 'bower_components/bootstrap/dist',
  302. src: 'fonts/*',
  303. dest: '<%= yeoman.dist %>'
  304. }]
  305. },
  306. styles: {
  307. expand: true,
  308. cwd: '<%= yeoman.app %>/styles',
  309. dest: '.tmp/styles/',
  310. src: '{,*/}*.css'
  311. }
  312. },
  313. // Run some tasks in parallel to speed up the build process
  314. concurrent: {
  315. server: [
  316. 'copy:styles'
  317. ],
  318. test: [
  319. 'copy:styles'
  320. ],
  321. dist: [
  322. 'copy:styles',
  323. 'imagemin',
  324. 'svgmin'
  325. ]
  326. },
  327. // Test settings
  328. karma: {
  329. unit: {
  330. configFile: 'test/karma.conf.js',
  331. singleRun: true
  332. }
  333. }
  334. });
  335. grunt.registerTask('serve', 'Compile then start a connect web server', function (target) {
  336. if (target === 'dist') {
  337. return grunt.task.run(['build', 'connect:dist:keepalive']);
  338. }
  339. grunt.task.run([
  340. 'clean:server',
  341. 'wiredep',
  342. 'concurrent:server',
  343. 'autoprefixer',
  344. 'connect:livereload',
  345. 'watch'
  346. ]);
  347. });
  348. grunt.registerTask('server', 'DEPRECATED TASK. Use the "serve" task instead', function (target) {
  349. grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.');
  350. grunt.task.run(['serve:' + target]);
  351. });
  352. grunt.registerTask('test', [
  353. 'clean:server',
  354. 'concurrent:test',
  355. 'autoprefixer',
  356. 'connect:test',
  357. 'karma'
  358. ]);
  359. grunt.registerTask('build', [
  360. 'clean:dist',
  361. 'wiredep',
  362. 'useminPrepare',
  363. 'concurrent:dist',
  364. 'autoprefixer',
  365. 'concat',
  366. 'ngmin',
  367. 'copy:dist',
  368. 'cdnify',
  369. 'cssmin',
  370. 'uglify',
  371. 'filerev',
  372. 'usemin',
  373. 'htmlmin'
  374. ]);
  375. grunt.registerTask('default', [
  376. 'newer:jshint',
  377. 'test',
  378. 'build'
  379. ]);
  380. };