Skip to content

Commit 14afe09

Browse files
committed
Fix
1 parent e318633 commit 14afe09

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "superfly-css-task-build",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Build task for superfly-css modules",
55
"main": "src/main/js/index.js",
66
"scripts": {

src/main/js/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ var processors = [stylelint(stylelintConfig), postcss_import, postcss_each, auto
3939
})];
4040

4141
gulp.task('build:css', function() {
42-
return gulp.src(PLI.SRC_MAIN_CSS)
42+
gulp.src(PLI.SRC_MAIN_CSS)
4343
.pipe(postcss(processors))
4444
.pipe(gulp.dest(PLI.target.main.css));
45+
46+
return gulp.src(PLI.SRC_TEST_CSS)
47+
.pipe(postcss(processors))
48+
.pipe(gulp.dest(PLI.target.test.css));
4549
});

0 commit comments

Comments
 (0)