Skip to content

Commit 8d5a6b3

Browse files
committed
Merge branch 'release-1.1.2' into develop
2 parents a0bf8ef + 100d924 commit 8d5a6b3

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v1.1.2
2+
## 02/15/2016
3+
4+
1. [](#bugfix)
5+
* Fix bower and npm
6+
17
# v1.1.1
28
## 02/13/2016
39

blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Medium
2-
version: 1.1.1
2+
version: 1.1.2
33
description: Medium is a simple and modern blogging theme based on Medium's design language, built for Grav CMS.
44
icon: globe
55
author:

bower.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "grav-theme-medium",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"authors": [
55
"Matthew Blode"
66
],
7-
"Medium is a simple and modern blogging theme based on Medium's design language, built for Grav CMS.",
87
"main": "index.html",
98
"license": "MIT",
109
"homepage": "https://github.com/mblode/grav-theme-medium",

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var concat = require('gulp-concat');
66
var uglify = require('gulp-uglify');
77
var imagemin = require('gulp-imagemin'),
88
cache = require('gulp-cache');
9-
var minifycss = require('gulp-minify-css');
9+
var cssnano = require('gulp-cssnano');
1010
var sass = require('gulp-sass');
1111

1212
gulp.task('images', function(){
@@ -47,7 +47,7 @@ gulp.task('styles', function(){
4747
.pipe(autoprefixer('last 2 versions'))
4848
.pipe(gulp.dest('dist/styles/'))
4949
.pipe(rename({suffix: '.min'}))
50-
.pipe(minifycss())
50+
.pipe(cssnano())
5151
.pipe(gulp.dest('dist/styles/'));
5252
});
5353

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
{
22
"name": "grav-theme-medium",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Medium is a simple and modern blogging theme based on Medium's design language, built for Grav CMS.",
55
"main": "gulpfile.js",
6-
"devDependencies": {
7-
"gulp": "^3.9.0",
8-
"gulp-autoprefixer": "^3.1.0",
9-
"gulp-load-plugins": "^1.1.0",
10-
"gulp-sass": "^2.1.0"
11-
},
6+
"devDependencies": {},
127
"scripts": {
138
"start": "gulp",
14-
"build": "gulp sass"
9+
"build": "gulp styles"
1510
},
1611
"repository": {
1712
"type": "git",
@@ -29,6 +24,7 @@
2924
"gulp-autoprefixer": "^3.1.0",
3025
"gulp-cache": "^0.4.2",
3126
"gulp-concat": "^2.6.0",
27+
"gulp-cssnano": "^2.1.1",
3228
"gulp-imagemin": "^2.4.0",
3329
"gulp-minify-css": "^1.2.3",
3430
"gulp-plumber": "^1.1.0",

0 commit comments

Comments
 (0)