diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index bf488ff9..86612dc4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js | |||
@@ -4,6 +4,7 @@ module.exports = function (grunt) { | |||
4 | grunt.initConfig({ | 4 | grunt.initConfig({ |
5 | appDir: 'app/Resources/static', | 5 | appDir: 'app/Resources/static', |
6 | buildDir: 'web/bundles/wallabagcore', | 6 | buildDir: 'web/bundles/wallabagcore', |
7 | modulesDir: 'node_modules', | ||
7 | 8 | ||
8 | postcss: { | 9 | postcss: { |
9 | material: { | 10 | material: { |
@@ -111,13 +112,13 @@ module.exports = function (grunt) { | |||
111 | copy: { | 112 | copy: { |
112 | pickerjs: { | 113 | pickerjs: { |
113 | expand: true, | 114 | expand: true, |
114 | cwd: 'node_modules/pickadate/lib', | 115 | cwd: '<%= modulesDir %>/pickadate/lib', |
115 | src: 'picker.js', | 116 | src: 'picker.js', |
116 | dest: '<%= buildDir %>', | 117 | dest: '<%= buildDir %>', |
117 | }, | 118 | }, |
118 | annotator: { | 119 | annotator: { |
119 | expand: true, | 120 | expand: true, |
120 | cwd: 'node_modules/annotator/pkg', | 121 | cwd: '<%= modulesDir %>/annotator/pkg', |
121 | src: 'annotator.min.js', | 122 | src: 'annotator.min.js', |
122 | dest: '<%= buildDir %>/themes/_global/js/', | 123 | dest: '<%= buildDir %>/themes/_global/js/', |
123 | }, | 124 | }, |
@@ -128,14 +129,21 @@ module.exports = function (grunt) { | |||
128 | { | 129 | { |
129 | expand: true, | 130 | expand: true, |
130 | overwrite: true, | 131 | overwrite: true, |
131 | cwd: '<%= appDir %>/lib/icomoon-bower/', | 132 | cwd: '<%= modulesDir %>/icomoon-free-npm/Font', |
132 | src: 'fonts', | 133 | src: 'IcoMoon-Free.ttf', |
133 | dest: '<%= buildDir %>/themes/baggy/', | 134 | dest: '<%= buildDir %>/themes/baggy/fonts/', |
135 | }, | ||
136 | { | ||
137 | expand: true, | ||
138 | overwrite: true, | ||
139 | cwd: '<%= modulesDir %>/ptsans-npm-webfont/fonts', | ||
140 | src: '*', | ||
141 | dest: '<%= buildDir %>/themes/baggy/fonts/', | ||
134 | }, | 142 | }, |
135 | { | 143 | { |
136 | expand: true, | 144 | expand: true, |
137 | overwrite: true, | 145 | overwrite: true, |
138 | cwd: '<%= appDir %>/lib/bower-pt-sans/fonts', | 146 | cwd: '<%= modulesDir %>/material-design-icons-iconfont/dist/fonts/', |
139 | src: '*', | 147 | src: '*', |
140 | dest: '<%= buildDir %>/themes/baggy/fonts/', | 148 | dest: '<%= buildDir %>/themes/baggy/fonts/', |
141 | }, | 149 | }, |
@@ -146,28 +154,28 @@ module.exports = function (grunt) { | |||
146 | { | 154 | { |
147 | expand: true, | 155 | expand: true, |
148 | overwrite: true, | 156 | overwrite: true, |
149 | cwd: '<%= appDir %>/lib/icomoon-bower/', | 157 | cwd: '<%= modulesDir %>/icomoon-free-npm/Font', |
150 | src: 'fonts', | 158 | src: 'IcoMoon-Free.ttf', |
151 | dest: '<%= buildDir %>/themes/material/', | 159 | dest: '<%= buildDir %>/themes/material/fonts', |
152 | }, | 160 | }, |
153 | { | 161 | { |
154 | expand: true, | 162 | expand: true, |
155 | overwrite: true, | 163 | overwrite: true, |
156 | cwd: 'node_modules/materialize-css/', | 164 | cwd: '<%= modulesDir %>/materialize-css/', |
157 | src: 'font', | 165 | src: 'font', |
158 | dest: '<%= buildDir %>/themes/material', | 166 | dest: '<%= buildDir %>/themes/material', |
159 | }, | 167 | }, |
160 | { | 168 | { |
161 | expand: true, | 169 | expand: true, |
162 | overwrite: true, | 170 | overwrite: true, |
163 | cwd: '<%= appDir %>/lib/roboto-fontface/fonts/', | 171 | cwd: '<%= modulesDir %>/roboto-fontface/fonts/Roboto', |
164 | src: '*', | 172 | src: '*', |
165 | dest: '<%= buildDir %>/themes/material/fonts/roboto/', | 173 | dest: '<%= buildDir %>/themes/material/fonts/', |
166 | }, | 174 | }, |
167 | { | 175 | { |
168 | expand: true, | 176 | expand: true, |
169 | overwrite: true, | 177 | overwrite: true, |
170 | cwd: '<%= appDir %>/lib/material-design-icons-iconfont/dist/fonts/', | 178 | cwd: '<%= modulesDir %>/material-design-icons-iconfont/dist/fonts/', |
171 | src: '*', | 179 | src: '*', |
172 | dest: '<%= buildDir %>/themes/material/fonts/', | 180 | dest: '<%= buildDir %>/themes/material/fonts/', |
173 | }, | 181 | }, |