We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d9972 commit 7b4b99cCopy full SHA for 7b4b99c
1 file changed
gulpfile.js
@@ -1,7 +1,6 @@
1
var gulp = require('gulp'),
2
postcss = require('gulp-postcss'),
3
rename = require('gulp-rename'),
4
- jade = require('gulp-jade'),
5
changelog = require('gulp-conventional-changelog');
6
7
require('gulp-release-tasks')(gulp);
@@ -27,12 +26,6 @@ gulp.task('changelog', function() {
27
26
.pipe(gulp.dest('./'));
28
});
29
30
-gulp.task('jade', function() {
31
- return gulp.src('app/jade/*.jade')
32
- .pipe(jade())
33
- .pipe(gulp.dest('./dist/'));
34
-});
35
-
36
gulp.task('pcss', function() {
37
return gulp.src('./app/pcss/' + pkg.name + '.pcss')
38
.pipe(postcss([
@@ -42,7 +35,7 @@ gulp.task('pcss', function() {
42
require('postcss-for-variables')(),
43
require('postcss-for')(),
44
require('postcss-custom-properties')(),
45
- require('postcss-calc')({ precision: 2 }),
+ require('postcss-calc')({ precision: 3 }),
46
39
require('postcss-banner')({banner: slim_banner})
47
40
]))
48
41
.pipe(rename({ extname: '.css' }))
0 commit comments