-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
151 lines (146 loc) · 5.49 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// we could just concatenate everything, really
// but we like to have it the complex way.
// also, in this way we do not have to worry
// about putting files in the correct order
// (the dependency tree is walked by r.js)
compass: {
theming5: {
options: {
sassDir: 'stylesheets/theming5',
cssDir: 'css',
outputStyle: 'compressed'
},
},
bootstrap3: {
options: {
sassDir: 'stylesheets/bootstrap',
cssDir: 'css/',
outputStyle: 'compressed'
},
},
ulearn: {
options: {
sassDir: 'stylesheets/ulearn',
cssDir: 'css/',
outputStyle: 'compressed'
},
},
ulearn_backend: {
options: {
sassDir: 'stylesheets/ulearn_backend',
cssDir: 'css/',
outputStyle: 'compressed'
},
}
},
concat: {
options: {
separator: '',
},
theming5: {
src: ['css/theming5.css'],
dest: 'css/theming5.min.css',
},
bootstrap3: {
src: ['css/bootstrap.css'],
dest: 'css/bootstrap3.min.css',
},
ulearn: {
src: ['../../../../../../ulearn5.js/ulearn5/js/components/angular-ui-select/dist/select.css',
'../../../../../../ulearn5.js/ulearn5/js/components/selectize/dist/css/selectize.default.css',
'../../../../../../ulearn5.js/ulearn5/js/components/selectize/dist/css/selectize.bootstrap2.css',
'../../../../../../ulearn5.js/ulearn5/js/components/ngDialog/css/ngDialog.css',
'../../../../../../ulearn5.js/ulearn5/js/components/ngDialog/css/ngDialog-theme-default.css',
'../../../../../../ulearn5.js/ulearn5/js/components/ngDialog/css/ngDialog-theme-plain.css',
'../../../../../../ulearn5.js/ulearn5/js/components/sweetalert/lib/sweet-alert.css',
'../../../../../../ulearn5.js/ulearn5/js/components/v-modal/dist/v-modal.css',
'css/ulearn.css'],
dest: 'css/ulearn-concat.css',
},
ulearn_backend: {
src: ['css/ulearn_backend.css'],
dest: 'css/ulearn_backend.min.css',
}
},
cssmin: {
target : {
src : ["css/ulearn-concat.css"],
dest : "css/ulearn.min.css"
}
},
watch: {
theming5: {
files: [
'stylesheets/theming5/*.scss',
'stylesheets/theming5.scss'
],
tasks: ['compass:theming5', 'concat:theming5'] //concat here only for renaming
},
bootstrap3: {
files: [
'stylesheets/bootstrap/*.scss',
'stylesheets/bootstrap/mixins/*.scss',
'stylesheets/bootstrap.scss',
],
tasks: ['compass:bootstrap3', 'concat:bootstrap3'] //concat here only for renaming
},
ulearn: {
files: [
'stylesheets/ulearn/*.scss',
'stylesheets/ulearn.scss',
'!stylesheets/ulearn/*backend.scss'
],
tasks: ['compass:ulearn', 'concat:ulearn', 'cssmin']
},
ulearn_backend: {
files: [
'stylesheets/ulearn/*backend.scss'
],
tasks: ['compass:ulearn', 'concat:ulearn', 'cssmin', 'compass:ulearn_backend', 'concat:ulearn_backend']
}
},
uglify: {
main: {
files: {
'javascripts/theming5.min.js': 'javascripts/theming5.js',
'javascripts/users_communities.min.js': 'javascripts/users_communities.js'
}
}
},
browserSync: {
plone: {
bsFiles: {
src : [
'css/*.css'
]
},
options: {
watchTask: true,
debugInfo: true,
proxy: "localhost:8080/Plone",
reloadDelay: 3000,
// reloadDebounce: 2000,
online: true
}
}
}
});
// grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-browser-sync');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
// CWD to theme folder
grunt.file.setBase('./src/ulearn5/theme/theme/assets');
// Registered tasks: grunt watch
grunt.registerTask('default', ["browserSync:plone", "watch"]);
grunt.registerTask('bsync', ["browserSync:html", "watch"]);
grunt.registerTask('plone-bsync', ["browserSync:plone", "watch"]);
grunt.registerTask('minify', ['uglify']);
};