From 428f89c38c8a7ccef31085710bb7a19a3293625a Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Tue, 5 Apr 2016 16:19:46 +0200 Subject: remove duplicate files --- common/gnome-shell/3.18/.nvmrc | 1 - common/gnome-shell/3.18/README.md | 16 ---------------- common/gnome-shell/3.18/gulpfile.js | 18 ------------------ common/gnome-shell/3.18/package.json | 7 ------- 4 files changed, 42 deletions(-) delete mode 100644 common/gnome-shell/3.18/.nvmrc delete mode 100644 common/gnome-shell/3.18/README.md delete mode 100644 common/gnome-shell/3.18/gulpfile.js delete mode 100644 common/gnome-shell/3.18/package.json (limited to 'common/gnome-shell/3.18') diff --git a/common/gnome-shell/3.18/.nvmrc b/common/gnome-shell/3.18/.nvmrc deleted file mode 100644 index 2bf5ad0..0000000 --- a/common/gnome-shell/3.18/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -stable diff --git a/common/gnome-shell/3.18/README.md b/common/gnome-shell/3.18/README.md deleted file mode 100644 index 9d62498..0000000 --- a/common/gnome-shell/3.18/README.md +++ /dev/null @@ -1,16 +0,0 @@ -This theme uses libsass/gulp to process the sass/*.scss. Never edit any of the .css files manually. - -#### Editing the theme - -* Install `nvm` (https://github.com/creationix/nvm) - -* Run `nvm i` from the directory containing `.nvmrc` - -* Run `npm i` from the directory containing `gulpfile.js`. It's the same directory as the one that contains `.nvmrc` in this case. - -* Install `gulp` with `npm i -g gulp` - -* Edit the sass/*.scss files - -* Regenerate the .css files by executing `gulp` from the directory that contains `gulpfile.js` - diff --git a/common/gnome-shell/3.18/gulpfile.js b/common/gnome-shell/3.18/gulpfile.js deleted file mode 100644 index 230ac9d..0000000 --- a/common/gnome-shell/3.18/gulpfile.js +++ /dev/null @@ -1,18 +0,0 @@ -var gulp = require("gulp"); -var sass = require("gulp-sass"); -var filter = require('gulp-filter'); - -gulp.task('sass', function () { - return gulp.src('sass/*.scss') - .pipe(sass({ - outputStyle: 'nested', - precision: 5, - onError: function (err) { - notify().write(err); - } - })) - .pipe(gulp.dest('.')) -}); - - -gulp.task('default', ['sass']); diff --git a/common/gnome-shell/3.18/package.json b/common/gnome-shell/3.18/package.json deleted file mode 100644 index b08961b..0000000 --- a/common/gnome-shell/3.18/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "devDependencies": { - "gulp": "~3.9.0", - "gulp-filter": "~2.0.2", - "gulp-sass": "~2.0.4" - } -} -- cgit v1.2.3