2013-12-12 05:18:07 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
|
|
grunt.config('rev', {
|
|
|
|
dist: {
|
|
|
|
files: {
|
|
|
|
src: [
|
2014-05-13 14:39:40 +04:00
|
|
|
'<%= yeoman.dist %>/bower_components/**/*.js',
|
2014-07-29 04:42:45 +04:00
|
|
|
'!<%= yeoman.dist %>/bower_components/jquery-ui/**/*.js',
|
2013-12-12 05:18:07 +04:00
|
|
|
'<%= yeoman.dist %>/scripts/{,*/}*.js',
|
|
|
|
'<%= yeoman.dist %>/styles/{,*/}*.css',
|
2014-07-29 04:42:45 +04:00
|
|
|
'<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
|
2015-04-14 00:54:49 +03:00
|
|
|
'!<%= yeoman.dist %>/images/apple_app_store_button/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
|
|
|
|
'!<%= yeoman.dist %>/images/google_play_store_button/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
|
2014-05-08 18:21:05 +04:00
|
|
|
'<%= yeoman.dist %>/fonts/{,*/}*.{woff,svg,ofl,eot,ttf}'
|
2013-12-12 05:18:07 +04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|