Skip to content
This repository was archived by the owner on Nov 10, 2022. It is now read-only.

Commit 6d1efda

Browse files
committed
Update package file
1 parent 4056b47 commit 6d1efda

File tree

5 files changed

+1493
-586
lines changed

5 files changed

+1493
-586
lines changed

Gulpfile.js

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,31 @@
11
var gulp = require('gulp');
22
var less = require('gulp-less');
3-
var shell = require('gulp-shell');
4-
var cssnano = require('gulp-cssnano');
53
var watch = require('gulp-watch');
64
var rename = require('gulp-rename');
7-
var concat = require('gulp-concat');
8-
var gutil = require('gulp-util');
9-
var autoprefixer = require('gulp-autoprefixer');
5+
var plumber = require('gulp-plumber');
6+
var cssnano = require('gulp-cssnano');
7+
var postcss = require('gulp-postcss');
8+
var autoprefixer = require('autoprefixer');
109

1110

1211
/*
1312
* CHUCKCSS FILES COMPILATION
1413
*/
1514
gulp.task('chuckcss_minify_less', function() {
1615
gulp.src('chuckcss/front.less')
16+
.pipe(plumber())
1717
.pipe(less())
18-
.pipe(cssnano({
19-
'postcss-minify-font-values': true
20-
}))
21-
.pipe(autoprefixer({
22-
browsers:"> 1%, last 2 versions, Safari >= 8"
23-
}))
18+
.pipe(cssnano())
19+
.pipe(postcss([ autoprefixer() ]))
2420
.pipe(rename({basename: 'chuckcss', suffix: '.min'}))
2521
.pipe(gulp.dest('dist/'));
2622
});
2723

2824
gulp.task('chuckcss_less', function() {
2925
gulp.src('chuckcss/front.less')
26+
.pipe(plumber())
3027
.pipe(less())
31-
.pipe(autoprefixer({
32-
browsers:"> 1%, last 2 versions, Safari >= 8"
33-
}))
28+
.pipe(postcss([ autoprefixer() ]))
3429
.pipe(rename({basename: 'chuckcss'}))
3530
.pipe(gulp.dest('dist/'));
3631
});
@@ -40,13 +35,10 @@ gulp.task('chuckcss_less', function() {
4035
*/
4136
gulp.task('chuckcss_print', function() {
4237
gulp.src('chuckcss/print.less')
38+
.pipe(plumber())
4339
.pipe(less())
44-
.pipe(cssnano({
45-
'postcss-minify-font-values': true
46-
}))
47-
.pipe(autoprefixer({
48-
browsers:"> 1%, last 2 versions, Safari >= 8"
49-
}))
40+
.pipe(cssnano())
41+
.pipe(postcss([ autoprefixer() ]))
5042
.pipe(rename({basename: 'print'}))
5143
.pipe(gulp.dest('dist/'));
5244
});
@@ -56,13 +48,10 @@ gulp.task('chuckcss_print', function() {
5648
*/
5749
gulp.task('test', function() {
5850
gulp.src('tests/test.less')
51+
.pipe(plumber())
5952
.pipe(less())
60-
// .pipe(cssnano({
61-
// 'postcss-minify-font-values': true
62-
// }))
63-
.pipe(autoprefixer({
64-
browsers:"> 1%, last 2 versions, Safari >= 8"
65-
}))
53+
.pipe(cssnano())
54+
.pipe(postcss([ autoprefixer() ]))
6655
.pipe(rename({basename: 'test'}))
6756
.pipe(gulp.dest('tests/'));
6857
});
@@ -78,5 +67,6 @@ gulp.task('default', [
7867
'chuckcss_less',
7968
'chuckcss_minify_less',
8069
'chuckcss_print',
81-
'test'
70+
'test',
71+
'watch'
8272
]);

ISSUE_TEMPLATE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Tag your issue with the bug label
55
- Inform :
66
- What browser and version you experience the problem
7+
- Number version of ChuckCSS impacted
78
- What OS you experience the problem
89
- What screen width you experience the problem
910
- If you can, a web address where we can experience the problem
@@ -13,10 +14,12 @@
1314
## Exemple of a good submission
1415
Full description of my problem. Curabitur aliquet quam id dui posuere blandit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Proin eget tortor risus. Cras ultricies ligula sed magna dictum porta. Pellentesque in ipsum id orci porta dapibus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Curabitur aliquet quam id dui posuere blandit.
1516

17+
ChuckCSS : v3.0.0
18+
1619
OS : Windows 10
1720

1821
Browser and version : Chrome 50.0
1922

2023
Screen width : 990px and upper - All screens widths
2124

22-
Webpage where you can see the problem
25+
Webpage where you can see the problem

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A responsive CSS framework :
88
- Developed with [LESS]
9-
- Compiled with [Autoprefixer]
9+
- Compiled with PostCSS - [Autoprefixer]
1010
- Including [Normalize.css]
1111

1212
**ChuckCSS include plenty of features :**

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy