This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gruntfile.js
90 lines (84 loc) · 2.48 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
/**
* Generated by https://github.com/alexander-schranz/sulu-backend-bundle.
*/
module.exports = function (grunt) {
var min = {},
path = require('path'),
srcpath = 'Resources/public/js',
destpath = 'Resources/public/dist';
// Build config "min" object dynamically.
grunt.file.expand({cwd: srcpath}, '**/*.js').forEach(function(relpath) {
// Create a target Using the verbose "target: {src: src, dest: dest}" format.
min[relpath] = {
src: path.join(srcpath, relpath),
dest: path.join(destpath, relpath)
};
// The more compact "dest: src" format would work as well.
// min[path.join(destpath, relpath)] = path.join(srcpath, relpath);
});
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
},
clean: {
options: { force: true }
},
watch: {
options: {
nospawn: true
},
compass: {
files: ['Resources/public/scss/{,*/}*.{scss,sass}'],
tasks: ['compass:dev']
},
scripts: {
files: ['Resources/public/**']
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
}
},
cssmin: {
compress: {
files: {
'Resources/public/css/main.min.css': ['Resources/public/css/main.css']
}
}
},
compass: {
dev: {
options: {
sassDir: 'Resources/public/scss/',
specify: ['Resources/public/scss/main.scss'],
cssDir: 'Resources/public/css/',
relativeAssets: false
}
}
},
uglify: min,
replace: {
build: {
options: {
variables: {
'l91suluform/js': 'l91suluform/dist'
},
prefix: ''
},
files: [
{src: [destpath + '/main.js'], dest: destpath + '/main.js'}
]
}
}
});
grunt.registerTask('build', [
'uglify',
'replace:build'
]);
grunt.registerTask('default', [
'watch'
]);
};