Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 5d07a1c

Browse files
committed
Deprecation notice and suggestions
1 parent 6b694fa commit 5d07a1c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
__This module has been deprecated. Please use the individual modules you need instead of this gigantic grab-bag.__
2+
3+
__Here are some things you can use instead:__
4+
5+
* `gutil.File` => https://www.npmjs.com/package/vinyl
6+
* `gutil.replaceExtension` => The `.extname` property on vinyl objects or https://www.npmjs.com/package/replace-ext
7+
* `gutil.colors` => https://www.npmjs.com/package/ansi-colors
8+
* `gutil.date` => https://www.npmjs.com/package/date-format
9+
* `gutil.log` => https://www.npmjs.com/package/fancy-log
10+
* `gutil.template` => https://www.npmjs.com/package/lodash.template
11+
* `gutil.env` => https://www.npmjs.com/package/minimist
12+
* `gutil.beep` => https://www.npmjs.com/package/beeper
13+
* `gutil.noop` => Use an empty function like `function() {}`
14+
* `gutil.isStream` => Use the `.isStream()` method on vinyl objects
15+
* `gutil.isBuffer` => Use the `.isBuffer()` method on vinyl objects
16+
* `gutil.isNull` => Use the `.isNull()` method on vinyl objects
17+
* `gutil.linefeed` => Use the string `'\n'` in your code
18+
* `gutil.combine` => https://www.npmjs.com/package/multipipe
19+
* `gutil.buffer` => https://www.npmjs.com/package/list-stream
20+
* `gutil.PluginError` => https://www.npmjs.com/package/plugin-error
21+
122
# gulp-util [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status][depstat-image]][depstat-url]
223

324
## Information

0 commit comments

Comments
 (0)