Patch version 7.1.1

This commit is contained in:
Raphael Goetter 2018-12-10 17:17:32 +01:00
parent 8d5ce8fa6c
commit 32ad91f29a
7 changed files with 36 additions and 33 deletions

View File

@ -1,6 +1,6 @@
{
"name": "KNACSS",
"version": "7.0.7",
"version": "7.1.1",
"homepage": "http://www.knacss.com/",
"authors": [
"Raphaël GOETTER, Alsacreations"

View File

@ -1,3 +1,6 @@
# changelog v7.1.1 (10 decembre 2018)
- patch correctif de gulpfile
# changelog v7.1.0 (31 octobre 2018)
- mise à jour et meilleure intégration de gulp / postCSS :
- autoprefixer version postCSS (avec browserslist officielle),

View File

@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
* www.KNACSS.com v7.1.0 (october, 31 2018) @author: Alsacreations, Raphael Goetter
* www.KNACSS.com v7.1.1 (december, 10 2018) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */

File diff suppressed because one or more lines are too long

View File

@ -47,18 +47,18 @@ var pluginsProd = [
// tâche CSS = compile vers knacss.css et knacss-unminified.css
gulp.task('css', function () {
return gulp.src('./sass/knacss.scss')
.pipe(sass({
outputStyle: 'expanded' // CSS non minifiée plus lisible ('}' à la ligne)
}))
.pipe(postcss(plugins))
.pipe(rename('knacss-unminified.css'))
.pipe(gulp.dest('./css/'))
.pipe(rename('knacss.css'))
.pipe(postcss(cssnano()))
.pipe(gulp.dest('./css/'));
});
// gulp.task('css', function () {
// return gulp.src('./sass/knacss.scss')
// .pipe(sass({
// outputStyle: 'expanded' // CSS non minifiée plus lisible ('}' à la ligne)
// }))
// .pipe(postcss(plugins))
// .pipe(rename('knacss-unminified.css'))
// .pipe(gulp.dest('./css/'))
// .pipe(rename('knacss.css'))
// //.pipe(postcss(cssnano()))
// .pipe(gulp.dest('./css/'));
// });
// tâche cssDev = compile vers knacss-unminified.css
gulp.task('cssDev', function () {
@ -95,7 +95,7 @@ gulp.task('grillade-flex', function() {
// Watcher
gulp.task('watch', function() {
gulp.watch(['./sass/*.scss'], ['css']);
gulp.watch(['./sass/*.scss'], ['cssDev']);
});

View File

@ -1,6 +1,6 @@
{
"name": "knacss",
"version": "7.1.0",
"version": "7.1.1",
"homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": "Raphaël GOETTER, Alsacreations",

View File

@ -1,5 +1,5 @@
/*!
* www.KNACSS.com v7.1.0 (october, 31 2018) @author: Alsacreations, Raphael Goetter
* www.KNACSS.com v7.1.1 (december, 10 2018) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/
*/