Skip to content

Commit 2810650

Browse files
committed
Fixed paths
1 parent 9fb626a commit 2810650

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

config/grunt/postcss.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ module.exports = {
1818
map: false
1919
},
2020
plugin: {
21-
files: [
22-
{
23-
src: 'css/<%= pkg.nameDashed %>.css',
24-
dest: '<%= paths.tmp %><%= pkg.nameDashed %>.css'
25-
},
26-
{
27-
src: 'css/admin-<%= pkg.nameDashed %>.css',
28-
dest: '<%= paths.tmp %>admin-<%= pkg.nameDashed %>.css'
29-
}
30-
]
21+
expand: true,
22+
cwd: '<%= paths.tmp %>',
23+
src: [
24+
'*.css',
25+
'!*.min.css'
26+
],
27+
dest: '<%= paths.tmp %>',
28+
ext: '.css',
29+
extDot: 'last'
3130
}
3231
};

0 commit comments

Comments
 (0)