From 72311851e5d607ae7c6dfa0c70797edba7ca20dc Mon Sep 17 00:00:00 2001 From: Stanko Date: Wed, 18 Nov 2020 18:52:23 +0100 Subject: [PATCH] Removed gulp/bower --- bower.json | 24 ------------------------ gulpfile.js | 34 ---------------------------------- package.json | 1 + 3 files changed, 1 insertion(+), 58 deletions(-) delete mode 100644 bower.json delete mode 100644 gulpfile.js diff --git a/bower.json b/bower.json deleted file mode 100644 index 1ab50bd..0000000 --- a/bower.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "skyblue", - "version": "1.0.4", - "homepage": "https://github.com/Stanko/skyblue", - "authors": [ - "Stanko " - ], - "description": "Small SASS/CSS framework", - "main": "css/skyblue.css", - "keywords": [ - "css", - "sass", - "framework", - "skyblue" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 6e51383..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,34 +0,0 @@ -var gulp = require('gulp'); -var sass = require('gulp-sass'); -var rename = require('gulp-rename'); -var notify = require('gulp-notify'); -var autoprefixer = require('gulp-autoprefixer'); -var minifyCss = require('gulp-minify-css'); - -var paths = { - sass: ['./sass/**/*.scss'] -}; - -gulp.task('default', ['sass']); - - -gulp.task('sass', function() { - return gulp.src('./sass/skyblue.scss') - .pipe(sass({ - style: 'expanded', - errLogToConsole: false, - onError: function(err) { - return notify().write(err); - } - })) - .pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4')) - .pipe(gulp.dest('./css/')) - .pipe(rename({suffix: '.min'})) - .pipe(minifyCss()) - .pipe(gulp.dest('./css')) - .pipe(notify({ message: 'SkyBlue css generated' })); -}); - -gulp.task('watch', function() { - gulp.watch(paths.sass, ['sass']); -}); \ No newline at end of file diff --git a/package.json b/package.json index 939254b..67533ec 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "skyblue", + "version": "1.0.5", "dependencies": { "node-sass": "^4.1.4" },