Skip to content

Commit c209a23

Browse files
committed
Updated gulp-autoprefixer
1 parent 163b13b commit c209a23

File tree

5 files changed

+105
-45
lines changed

5 files changed

+105
-45
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ A Demo website of the Beautiful Gardens static website generator boilerplate is
5757

5858
## Changelog ##
5959

60+
### 1.3.0 ###
61+
* Updated gulp-autoprefixer
62+
* Moved autoprefixer after sass in gulp file
63+
6064
### 1.2.7 ###
6165
* Updated browser-sync
6266

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ var browserSyncFiles = [
9393
*/
9494
function styles() {
9595
return gulp.src(SOURCEPATHS.sassSource)
96-
.pipe(autoprefixer(autoprefixerOptions))
9796
.pipe(sass(sassOptions).on('error', sass.logError))
97+
.pipe(autoprefixer(autoprefixerOptions))
9898
.pipe(gulp.dest(APPPATH.css))
9999
.pipe(cleanCSS({compatibility: 'ie8'}))
100100
.pipe(rename({ extname: '.min.css' }))

package-lock.json

+97-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beautiful-gardens",
3-
"version": "1.2.7",
3+
"version": "1.3.0",
44
"description": "Static website generator boilerplate",
55
"main": "index.js",
66
"scripts": {
@@ -26,7 +26,7 @@
2626
"bootstrap-sass": "^3.4.1",
2727
"browser-sync": "^2.26.5",
2828
"gulp": "^4.0.0",
29-
"gulp-autoprefixer": "^6.0.0",
29+
"gulp-autoprefixer": "^6.1.0",
3030
"gulp-clean-css": "^3.10.0",
3131
"gulp-concat": "^2.6.1",
3232
"gulp-rename": "^1.4.0",

src/scss/app.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,4 +537,4 @@ footer a:hover {
537537
a[href^="http"]:after {
538538
content: " (" attr(href) ")";
539539
}
540-
}
540+
}

0 commit comments

Comments
 (0)