Skip to content

Commit 4099e2e

Browse files
committed
Remove Gulp instructions
1 parent 128004b commit 4099e2e

1 file changed

Lines changed: 0 additions & 30 deletions

File tree

README.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -115,35 +115,6 @@ npx postcss --no-map --replace your-css-file.css
115115

116116
For more information and options, please consult the [postcss-cli docs](https://github.com/postcss/postcss-cli).
117117

118-
### Gulp
119-
120-
Add [gulp-postcss] and PostCSS Sorting to your build tool:
121-
122-
```bash
123-
npm install postcss gulp-postcss postcss-sorting --save-dev
124-
```
125-
126-
Enable PostCSS Sorting within your Gulpfile:
127-
128-
```js
129-
let gulp = require('gulp');
130-
let postcss = require('gulp-postcss');
131-
let sorting = require('postcss-sorting');
132-
133-
exports['sort-css'] = () => {
134-
return gulp
135-
.src('./css/src/*.css')
136-
.pipe(
137-
postcss([
138-
sorting({
139-
/* options */
140-
}),
141-
])
142-
)
143-
.pipe(gulp.dest('./css/src'));
144-
};
145-
```
146-
147118
### Text editor
148119

149120
This plugin available as [Sublime Text], [Atom], [VS Code], and [Emacs] plugin. Though, seems all these plugins are not maintained.
@@ -164,7 +135,6 @@ I recommend [Prettier] for formatting stylesheets.
164135
[VS Code]: https://github.com/mrmlnc/vscode-postcss-sorting
165136
[Emacs]: https://github.com/P233/postcss-sorting.el
166137

167-
[gulp-postcss]: https://github.com/postcss/gulp-postcss
168138
[postcss-scss]: https://github.com/postcss/postcss-scss
169139
[postcss-html]: https://github.com/ota-meshi/postcss-html
170140
[postcss-styled-syntax]: https://github.com/hudochenkov/postcss-styled-syntax

0 commit comments

Comments
 (0)