From 088d3c8af3f5ffefd56c82e216cdd9e3950b1821 Mon Sep 17 00:00:00 2001 From: Kim Nguyen Date: Thu, 23 Sep 2021 11:49:01 -0400 Subject: [PATCH] Bump versions and update gulp task. --- gulpfile.js | 5 ++--- package-lock.json | 2 +- package.json | 8 ++++++-- theme.ini | 6 +++--- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index fa25822..2a5a388 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,17 +1,16 @@ var gulp = require('gulp'); gulp.task('css', function() { - var sass = require('gulp-sass'); + var sass = require('gulp-sass')(require('sass')); var postcss = require('gulp-postcss'); var autoprefixer = require('autoprefixer'); return gulp.src('./css/sass/*.scss') .pipe(sass({ - outputStyle: 'nested', includePaths: ['./node_modules/susy/sass'] }).on('error', sass.logError)) .pipe(postcss([ - autoprefixer({browsers: ['> 5%', '> 5% in US', 'last 2 versions']}) + autoprefixer() ])) .pipe(gulp.dest('./css')); }); diff --git a/package-lock.json b/package-lock.json index e14b611..7e03a5a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "minimalist", - "version": "2.5.1", + "version": "2.5.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 9fef259..07fd6a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimalist", - "version": "2.5.1", + "version": "2.5.2", "description": "\"Clean lines, architectural.\"", "main": "gulpfile.js", "devDependencies": { @@ -31,5 +31,9 @@ "bugs": { "url": "https://github.com/omeka/theme-minimalist/issues" }, - "homepage": "https://github.com/omeka/theme-minimalist#readme" + "homepage": "https://github.com/omeka/theme-minimalist#readme", + "browserslist": [ + "> 5%", + "> 1% in US" + ] } diff --git a/theme.ini b/theme.ini index 4733e6d..7dc2cbd 100644 --- a/theme.ini +++ b/theme.ini @@ -8,7 +8,7 @@ description = "Clean lines, architectural." license = "GPLv3" website = "https://omeka.org" support_link = "https://omeka.org/forums/forum/themes-and-public-display" -omeka_minimum_version="2.8" -omeka_target_version="2.8" -version="2.5.1" +omeka_minimum_version="3.0" +omeka_target_version="3.0" +version="2.5.2" tags="lines, minimal, architectural, purple, white, mobile-first, sans-serif"