Skip to content

Commit

Permalink
Merge pull request #48 from thatgibbyguy/development
Browse files Browse the repository at this point in the history
Bump to 0.8.1
  • Loading branch information
thatgibbyguy authored Jul 7, 2019
2 parents c7d84ca + d459ecc commit f4bbe26
Show file tree
Hide file tree
Showing 14 changed files with 5,921 additions and 1,436 deletions.
2 changes: 1 addition & 1 deletion dist/css/ply-essentials.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/ply-helpers.min.css

Large diffs are not rendered by default.

1,149 changes: 484 additions & 665 deletions dist/css/ply.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/ply.min.css

Large diffs are not rendered by default.

1,149 changes: 484 additions & 665 deletions dist/css/styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/styles.min.css

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions gulpfile.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var gulp = require('gulp'),
babel = require('gulp-babel'),
concat = require('gulp-concat');

gulp.task('ply', function() {
gulp.task('ply', () => {
gulp.src('./src/scss/ply-iso.scss')
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer(
Expand All @@ -16,7 +16,7 @@ gulp.task('ply', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('plyEssentials', function() {
gulp.task('plyEssentials', () => {
gulp.src('./src/scss/ply-essentials.scss')
.pipe(sass({
outputStyle: 'compressed'
Expand All @@ -28,7 +28,7 @@ gulp.task('plyEssentials', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('plyHelpers', function() {
gulp.task('plyHelpers', () => {
gulp.src('./src/scss/ply-helpers.scss')
.pipe(sass({
outputStyle: 'compressed'
Expand All @@ -40,7 +40,7 @@ gulp.task('plyHelpers', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('plyMin', function() {
gulp.task('plyMin', () => {
gulp.src('./src/scss/ply-iso.scss')
.pipe(sass({
outputStyle: 'compressed'
Expand All @@ -52,7 +52,7 @@ gulp.task('plyMin', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('styles', function() {
gulp.task('styles', () => {
gulp.src('./src/scss/styles.scss')
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer(
Expand All @@ -61,7 +61,7 @@ gulp.task('styles', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('stylesMin', function() {
gulp.task('stylesMin', () => {
gulp.src('./src/scss/styles.scss')
.pipe(sass({
outputStyle: 'compressed'
Expand All @@ -73,6 +73,6 @@ gulp.task('stylesMin', function() {
.pipe(gulp.dest('./dist/css/'))
});

gulp.task('default',function() {
gulp.task('default',() => {
gulp.watch('./src/scss/styles.scss',['styles','stylesMin','plyEssentials']);
});
});
2 changes: 1 addition & 1 deletion node_modules/gulp/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 22 additions & 24 deletions node_modules/gulp/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

95 changes: 36 additions & 59 deletions node_modules/gulp/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f4bbe26

Please sign in to comment.