Gruntfile.js 2.25 KB
Newer Older
Rushikesh Padsala's avatar
Rushikesh Padsala committed
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module.exports = function(grunt) {
  var options = {
    livereload: true,
    port: grunt.option('port') || 8888,
    hostname:  grunt.option('server') || "localhost",
  };

  // Project configuration.
  grunt.initConfig({
    watch: {
      livereload: {
        // Here we watch any files changed
        options: { 
          livereload: true 
        },
        files: [
          'src/**/*.js', 
          'src/**/*.css',
          'src/**/*.html'
        ]
      }
    },
    connect: {
      app: {
        options: options
      }
    },
    concat : {
      dist : {
        src  : ['src/js/**/*.js'],
        dest : '.tmp/main.js'
      }
    },
    uglify : {
      dist : {
        src  : 'dist/main.min.js',
        dest : 'dist/main.min.js'
      }
    },
    htmlmin: {
      dist: {
        options: {
          removeComments: true,
          collapseWhitespace: true
        },
        files: {
          'dist/index.html': 'dist/index.html'
        }
      }
    },
    copy: {
      dist: {
        files: [
          {
            expand: true,
            src: ['src/**/*.css'],
            dest: 'dist/'
          }
        ]
      }
    },
    comments: {
      dist: {
        options: {
          singleline: true,
          multiline: true
        },
        src: [ 'dist/*.html' ]
      }
    },
    includeSource: {
      options: {
        basePath: 'dist'
      },
      dist: {
        files: {
          'dist/index.html': './index.html'
        }
      }
    },
    run: {
      tscDist: {
        cmd: 'npx',
        args: [
          'tsc',
          '--outFile',
          'dist/main.min.js'
        ]
      }
    }
  });

  // dist
  grunt.loadNpmTasks('grunt-contrib-uglify');
  grunt.loadNpmTasks('grunt-contrib-htmlmin');
  grunt.loadNpmTasks('grunt-contrib-concat');
  grunt.loadNpmTasks('grunt-contrib-copy');
  grunt.loadNpmTasks('grunt-stripcomments');
  grunt.loadNpmTasks('grunt-include-source');
  grunt.loadNpmTasks('grunt-run');


  // Load grunt plugins
  grunt.loadNpmTasks('grunt-contrib-watch');
  grunt.loadNpmTasks('grunt-contrib-connect');


  // Register tasks
  grunt.registerTask("default", ["connect", "watch"]);
  grunt.registerTask("dist", ["run:tscDist", "includeSource:dist", "copy:dist", "uglify:dist", "htmlmin:dist", "comments:dist"]);
};