1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-28 14:00:44 +00:00

Update HACKING.md to reflect sassc change

This commit is contained in:
NicoHood 2018-01-09 19:07:17 +01:00
parent 54605c7949
commit e3478e4d0f
No known key found for this signature in database
GPG Key ID: 51DAE9B7C1AE9161

View File

@ -2,17 +2,9 @@ This theme uses node-sass/libsass to process the various .scss files. Never edit
#### Editing the CSS based themes in the `common` directory (cinnamon, gnome-shell, gtk-3.0) #### Editing the CSS based themes in the `common` directory (cinnamon, gnome-shell, gtk-3.0)
* Install `nvm` (https://github.com/creationix/nvm)
* Close and reopen your terminal
* Run `nvm i` and `npm i` from this directory
* Install `gulp` with `npm i -g gulp`
* Edit the `common/*/sass/*.scss` files * Edit the `common/*/sass/*.scss` files
* Regenerate all .css files by executing `gulp` from the directory containing `gulpfile.js`. Alternatively execute `gulp --cwd` from any subdirectory containing a folder called `sass` to regenerate the .css files within that specific subdirectory only. * Run `make` to generate all css files using sassc (starting with version 20180114). Gulp is no longer required.
-- --