-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
126 lines (117 loc) · 3.29 KB
/
Gruntfile.js
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
options: {
style: 'compressed'
},
files: {
'lib/styles/main.min.css': 'src/styles/main.scss'
}
}
},
uglify: {
options: {
preserveComments: false
},
my_target: {
files: {
'lib/js/app.min.js': ['lib/js/app.js'],
'lib/js/vendor.min.js': ['lib/js/vendor.js']
}
}
},
concat: {
options: {
separator: ';'
},
dist: {
files: {
'./lib/js/app.js': [
'./src/js/app.js'
],
'./lib/js/vendor.js': [
'./src/js/vendor/jquery.js'
]
}
}
},
// imagemin: {
// dynamic: {
// options: {
// optimizationLevel: 3
// },
// files: [
// {
// expand: true,
// cwd: 'images/',
// src: ['**/*.{png,jpg,gif,svg}'],
// dest: 'images/'
// }
// ]
// }
// },
// jshint: {
// all: ['Gruntfile.js', 'src/*.js', 'test/*.js']
// },
// mochaTest: {
// test: {
// options: {
// reporter: 'spec',
// captureFile: 'test/results.txt',
// quiet: false,
// clearRequireCache: false,
// noFail: false
// },
// src: ['test/**/*.js']
// }
// },
// babel: {
// options: {
// sourceMap: true,
// presets: ['es2015']
// },
// dist: {
// files: {
// 'src/js/main.js': 'src/js/main.js'
// }
// }
// },
watch: {
css: {
files: ['src/styles/**/*'],
tasks: ['sass']
},
javascript: {
files: [
'src/js/**/*', 'test/*.js'
],
tasks: [//'mochaTest', 'jshint',
'concat', 'uglify']
}
// img: {
// files: ['images/**/*'],
// tasks: ['imagemin']
// }
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
// grunt.loadNpmTasks('grunt-contrib-jshint');
//grunt.loadNpmTasks('grunt-contrib-imagemin');
// grunt.loadNpmTasks('grunt-mocha-test');
//grunt.loadNpmTasks('grunt-babel');
grunt.registerTask('default', [
'sass',
'watch',
//'imagemin',
'concat',
'uglify'
// 'jshint',
// 'mochaTest',
// 'babel'
]);
};