Remove failed & gone Gulp stuff from README

This commit is contained in:
benjamin melançon 2021-08-17 07:52:59 -04:00
parent e5171eb26e
commit ae9a89872c

View file

@ -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
```