diff options
Diffstat (limited to 'common/gnome-shell/3.14')
-rw-r--r-- | common/gnome-shell/3.14/.nvmrc | 1 | ||||
-rw-r--r-- | common/gnome-shell/3.14/README.md | 16 | ||||
-rw-r--r-- | common/gnome-shell/3.14/gulpfile.js | 18 | ||||
-rw-r--r-- | common/gnome-shell/3.14/package.json | 7 |
4 files changed, 0 insertions, 42 deletions
diff --git a/common/gnome-shell/3.14/.nvmrc b/common/gnome-shell/3.14/.nvmrc deleted file mode 100644 index 2bf5ad0..0000000 --- a/common/gnome-shell/3.14/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -stable diff --git a/common/gnome-shell/3.14/README.md b/common/gnome-shell/3.14/README.md deleted file mode 100644 index 9d62498..0000000 --- a/common/gnome-shell/3.14/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.14/gulpfile.js b/common/gnome-shell/3.14/gulpfile.js deleted file mode 100644 index 230ac9d..0000000 --- a/common/gnome-shell/3.14/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.14/package.json b/common/gnome-shell/3.14/package.json deleted file mode 100644 index b08961b..0000000 --- a/common/gnome-shell/3.14/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "devDependencies": { - "gulp": "~3.9.0", - "gulp-filter": "~2.0.2", - "gulp-sass": "~2.0.4" - } -} |