Skip to content

Commit f4bbe26

Browse files
authored
Merge pull request #48 from thatgibbyguy/development
Bump to 0.8.1
2 parents c7d84ca + d459ecc commit f4bbe26

File tree

14 files changed

+5921
-1436
lines changed

14 files changed

+5921
-1436
lines changed

dist/css/ply-essentials.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/ply-helpers.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/ply.css

Lines changed: 484 additions & 665 deletions
Large diffs are not rendered by default.

dist/css/ply.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/styles.css

Lines changed: 484 additions & 665 deletions
Large diffs are not rendered by default.

dist/css/styles.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

100755100644
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var gulp = require('gulp'),
66
babel = require('gulp-babel'),
77
concat = require('gulp-concat');
88

9-
gulp.task('ply', function() {
9+
gulp.task('ply', () => {
1010
gulp.src('./src/scss/ply-iso.scss')
1111
.pipe(sass().on('error', sass.logError))
1212
.pipe(autoprefixer(
@@ -16,7 +16,7 @@ gulp.task('ply', function() {
1616
.pipe(gulp.dest('./dist/css/'))
1717
});
1818

19-
gulp.task('plyEssentials', function() {
19+
gulp.task('plyEssentials', () => {
2020
gulp.src('./src/scss/ply-essentials.scss')
2121
.pipe(sass({
2222
outputStyle: 'compressed'
@@ -28,7 +28,7 @@ gulp.task('plyEssentials', function() {
2828
.pipe(gulp.dest('./dist/css/'))
2929
});
3030

31-
gulp.task('plyHelpers', function() {
31+
gulp.task('plyHelpers', () => {
3232
gulp.src('./src/scss/ply-helpers.scss')
3333
.pipe(sass({
3434
outputStyle: 'compressed'
@@ -40,7 +40,7 @@ gulp.task('plyHelpers', function() {
4040
.pipe(gulp.dest('./dist/css/'))
4141
});
4242

43-
gulp.task('plyMin', function() {
43+
gulp.task('plyMin', () => {
4444
gulp.src('./src/scss/ply-iso.scss')
4545
.pipe(sass({
4646
outputStyle: 'compressed'
@@ -52,7 +52,7 @@ gulp.task('plyMin', function() {
5252
.pipe(gulp.dest('./dist/css/'))
5353
});
5454

55-
gulp.task('styles', function() {
55+
gulp.task('styles', () => {
5656
gulp.src('./src/scss/styles.scss')
5757
.pipe(sass().on('error', sass.logError))
5858
.pipe(autoprefixer(
@@ -61,7 +61,7 @@ gulp.task('styles', function() {
6161
.pipe(gulp.dest('./dist/css/'))
6262
});
6363

64-
gulp.task('stylesMin', function() {
64+
gulp.task('stylesMin', () => {
6565
gulp.src('./src/scss/styles.scss')
6666
.pipe(sass({
6767
outputStyle: 'compressed'
@@ -73,6 +73,6 @@ gulp.task('stylesMin', function() {
7373
.pipe(gulp.dest('./dist/css/'))
7474
});
7575

76-
gulp.task('default',function() {
76+
gulp.task('default',() => {
7777
gulp.watch('./src/scss/styles.scss',['styles','stylesMin','plyEssentials']);
78-
});
78+
});

node_modules/gulp/LICENSE

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/gulp/README.md

Lines changed: 22 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/gulp/package.json

Lines changed: 36 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)