Skip to content

Commit

Permalink
Update dependencies & copyright notice, fix #38
Browse files Browse the repository at this point in the history
  • Loading branch information
jr-cologne committed Mar 13, 2020
1 parent 0e406b7 commit 7dda284
Show file tree
Hide file tree
Showing 5 changed files with 1,894 additions and 1,186 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 JR Cologne
Copyright (c) 2020 JR Cologne

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ These [npm](https://www.npmjs.com/) packages are used in the Gulp Starter Kit:
- [gulp-autoprefixer](https://www.npmjs.com/package/gulp-autoprefixer)
- [gulp-babel](https://www.npmjs.com/package/gulp-babel)
- [gulp-concat](https://www.npmjs.com/package/gulp-concat)
- [gulp-dependents](https://www.npmjs.com/package/gulp-dependents)
- [gulp-clean-css](https://www.npmjs.com/package/gulp-clean-css)
- [gulp-plumber](https://www.npmjs.com/package/gulp-plumber)
- [gulp-sass](https://www.npmjs.com/package/gulp-sass)
Expand Down
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @package @jr-cologne/create-gulp-starter-kit
* @author JR Cologne <kontakt@jr-cologne.de>
* @copyright 2019 JR Cologne
* @copyright 2020 JR Cologne
* @license https://github.com/jr-cologne/gulp-starter-kit/blob/master/LICENSE MIT
* @version v0.10.11-beta
* @link https://github.com/jr-cologne/gulp-starter-kit GitHub Repository
Expand Down Expand Up @@ -33,6 +33,7 @@ const gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
browserSync = require('browser-sync').create(),
pug = require('gulp-pug'),
dependents = require('gulp-dependents'),

src_folder = './src/',
src_assets_folder = src_folder + 'assets/',
Expand Down Expand Up @@ -72,6 +73,7 @@ gulp.task('sass', () => {
], { since: gulp.lastRun('sass') })
.pipe(sourcemaps.init())
.pipe(plumber())
.pipe(dependents())
.pipe(sass())
.pipe(autoprefixer())
.pipe(minifyCss())
Expand Down
Loading

0 comments on commit 7dda284

Please sign in to comment.