Skip to content

Commit 7b4b99c

Browse files
author
Ivan Demidov
committed
remove jade
1 parent 95d9972 commit 7b4b99c

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

gulpfile.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
var gulp = require('gulp'),
22
postcss = require('gulp-postcss'),
33
rename = require('gulp-rename'),
4-
jade = require('gulp-jade'),
54
changelog = require('gulp-conventional-changelog');
65

76
require('gulp-release-tasks')(gulp);
@@ -27,12 +26,6 @@ gulp.task('changelog', function() {
2726
.pipe(gulp.dest('./'));
2827
});
2928

30-
gulp.task('jade', function() {
31-
return gulp.src('app/jade/*.jade')
32-
.pipe(jade())
33-
.pipe(gulp.dest('./dist/'));
34-
});
35-
3629
gulp.task('pcss', function() {
3730
return gulp.src('./app/pcss/' + pkg.name + '.pcss')
3831
.pipe(postcss([
@@ -42,7 +35,7 @@ gulp.task('pcss', function() {
4235
require('postcss-for-variables')(),
4336
require('postcss-for')(),
4437
require('postcss-custom-properties')(),
45-
require('postcss-calc')({ precision: 2 }),
38+
require('postcss-calc')({ precision: 3 }),
4639
require('postcss-banner')({banner: slim_banner})
4740
]))
4841
.pipe(rename({ extname: '.css' }))

0 commit comments

Comments
 (0)