diff --git a/web/themes/custom/geofresco/README.md b/web/themes/custom/geofresco/README.md index 9cafcd4..dcad156 100644 --- a/web/themes/custom/geofresco/README.md +++ b/web/themes/custom/geofresco/README.md @@ -65,41 +65,8 @@ _This command will look at your `.nvmrc` file and use the version node.js specif _This command looks at `package.json` and installs all the npm dependencies specified in it. Some of the dependencies include gulp, autoprefixer, gulp-sass and others._ -#### Gulp tasks +#### Compile CSS -Provided by default are seven npm scripts that point to Gulp tasks. We run gulp through npm scripts so the build tools can change without the user ever knowing. - -1. Run the default build task (gulp in this instance) and everything in it. - This is the equivalent to running `gulp` on the command line with Gulp installed globally. - ``` - npm run build - ``` - -2. Compile Sass and JS. - ``` - npm run compile - ``` - or: ``` ./css ``` - -3. Watch files and run tasks when they change. - ``` - npm run watch - ``` - -4. Compress png and svg assets. - ``` - npm run compress - ``` - -5. Lint Sass and JS files. - ``` - npm run lint - ``` - -6. Delete compiled Sass, JS and style guide files from the /dist directory. - ``` - npm run clean - ```