Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Gruntfile.js « ng-dialog « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9433238781bad8312358cb806bf03f33fe0d5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = function (grunt) {

    grunt.initConfig({
        pkg: grunt.file.readJSON('package.json'),
        uglify: {
            options: {
                banner: '/*! <%= pkg.name %> - v<%= pkg.version %> (<%= pkg.homepage %>) */\n'
            },
            ngDialog: {
                files: {
                    './js/ngDialog.min.js': ['./js/ngDialog.js']
                }
            }
        },
        jshint: {
            options: {
                ignores: ['./js/ngDialog.min.js']
            },
            files: ['*.js']
        },
        myth: {
            dist: {
                files: {
                    './css/ngDialog.css': './css/myth/ngDialog.css',
                    './css/ngDialog-theme-default.css': './css/myth/ngDialog-theme-default.css',
                    './css/ngDialog-theme-plain.css': './css/myth/ngDialog-theme-plain.css'
                }
            }
        },
        cssmin: {
            options: {
                banner: '/*! <%= pkg.name %> - v<%= pkg.version %> (<%= pkg.homepage %>) */\n'
            },
            minify: {
                files: {
                    'css/ngDialog.min.css': ['css/ngDialog.css'],
                    'css/ngDialog-theme-default.min.css': ['css/ngDialog-theme-default.css'],
                    'css/ngDialog-theme-plain.min.css': ['css/ngDialog-theme-plain.css']
                }
            }
        }
    });

    grunt.loadNpmTasks('grunt-contrib-jshint');
    grunt.loadNpmTasks('grunt-contrib-uglify');
    grunt.loadNpmTasks('grunt-myth');
    grunt.loadNpmTasks('grunt-contrib-cssmin');

    grunt.registerTask('default', ['jshint']);
    grunt.registerTask('build', ['uglify', 'myth', 'cssmin']);
    grunt.registerTask('css', ['myth', 'cssmin']);
};