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", "name": "KNACSS",
"version": "7.0.7", "version": "7.1.1",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"authors": [ "authors": [
"Raphaël GOETTER, Alsacreations" "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) # changelog v7.1.0 (31 octobre 2018)
- mise à jour et meilleure intégration de gulp / postCSS : - mise à jour et meilleure intégration de gulp / postCSS :
- autoprefixer version postCSS (avec browserslist officielle), - autoprefixer version postCSS (avec browserslist officielle),

View File

@ -1,6 +1,6 @@
@charset "UTF-8"; @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/ * 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 // tâche CSS = compile vers knacss.css et knacss-unminified.css
gulp.task('css', function () { // gulp.task('css', function () {
return gulp.src('./sass/knacss.scss') // return gulp.src('./sass/knacss.scss')
.pipe(sass({ // .pipe(sass({
outputStyle: 'expanded' // CSS non minifiée plus lisible ('}' à la ligne) // outputStyle: 'expanded' // CSS non minifiée plus lisible ('}' à la ligne)
})) // }))
.pipe(postcss(plugins)) // .pipe(postcss(plugins))
.pipe(rename('knacss-unminified.css')) // .pipe(rename('knacss-unminified.css'))
.pipe(gulp.dest('./css/')) // .pipe(gulp.dest('./css/'))
.pipe(rename('knacss.css')) // .pipe(rename('knacss.css'))
.pipe(postcss(cssnano())) // //.pipe(postcss(cssnano()))
.pipe(gulp.dest('./css/')); // .pipe(gulp.dest('./css/'));
}); // });
// tâche cssDev = compile vers knacss-unminified.css // tâche cssDev = compile vers knacss-unminified.css
gulp.task('cssDev', function () { gulp.task('cssDev', function () {
@ -95,7 +95,7 @@ gulp.task('grillade-flex', function() {
// Watcher // Watcher
gulp.task('watch', function() { gulp.task('watch', function() {
gulp.watch(['./sass/*.scss'], ['css']); gulp.watch(['./sass/*.scss'], ['cssDev']);
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "knacss", "name": "knacss",
"version": "7.1.0", "version": "7.1.1",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues", "bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": "Raphaël GOETTER, Alsacreations", "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/ * Licence WTFPL http://www.wtfpl.net/
*/ */