Skip to content

Commit 5a69d2d

Browse files
committed
Updated cssmin to include the RTL stylesheet
Globbing was being a bitch here… whatever.
1 parent 2e5c718 commit 5a69d2d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

config/grunt/cssmin.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
// https://github.com/gruntjs/grunt-contrib-cssmin
22
module.exports = {
33
style: {
4-
src: 'style.css',
5-
dest: 'style.min.css'
4+
files: [
5+
{
6+
src: 'style.css',
7+
dest: 'style.min.css'
8+
},
9+
{
10+
src: 'style-rtl.css',
11+
dest: 'style-rtl.min.css'
12+
}
13+
]
614
},
715
vendor: {
816
expand: true,

0 commit comments

Comments
 (0)