We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2aa371 commit a8fbe83Copy full SHA for a8fbe83
1 file changed
config/grunt/rtlcss.js
@@ -1,21 +1,20 @@
1
// https://github.com/MohammadYounes/grunt-rtlcss
2
module.exports = {
3
- theme: {
4
- options: {
5
- swapLeftRightInUrl: false,
6
- swapLtrRtlInUrl: false,
7
- autoRename: false,
8
- preserveDirectives: true
9
- },
10
- files: [
11
- {
12
- src: '<%= paths.tmp %><%= pkg.nameDashed %>.css',
13
- dest: '<%= paths.tmp %><%= pkg.nameDashed %>-rtl.css'
14
15
16
- src: '<%= paths.tmp %>admin-<%= pkg.nameDashed %>.css',
17
- dest: '<%= paths.tmp %>admin-<%= pkg.nameDashed %>-rtl.css'
18
- }
19
- ]
+ options: {
+ swapLeftRightInUrl: false,
+ swapLtrRtlInUrl: false,
+ autoRename: false,
+ preserveDirectives: true
+ },
+ plugin: {
+ expand: true,
+ cwd: '<%= paths.tmp %>',
+ src: [
+ '*.css',
+ '!*.min.css'
+ ],
+ dest: '<%= paths.tmp %>',
+ ext: '.css',
+ extDot: 'last'
20
}
21
};
0 commit comments