Files

Return to Package Diff Home.
Brought to you by Intrinsic.

Package Diff: gulp @ 4.0.1 .. 4.0.2

index.js

@@ -16,6 +16,9 @@
this.registry = this.registry.bind(this);
this.tree = this.tree.bind(this);
this.lastRun = this.lastRun.bind(this);
+ this.src = this.src.bind(this);
+ this.dest = this.dest.bind(this);
+ this.symlink = this.symlink.bind(this);
}
util.inherits(Gulp, Undertaker);

package.json

@@ -1,6 +1,6 @@
{
"name": "gulp",
- "version": "4.0.1",
+ "version": "4.0.2",
"description": "The streaming build system.",
"homepage": "https://gulpjs.com",
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",

README.md

@@ -124,6 +124,8 @@
## Use latest JavaScript version in your gulpfile
+__Most new versions of node support most features that Babel provides, except the `import`/`export` syntax. When only that syntax is desired, rename to `gulpfile.esm.js`, install the [esm][esm-module] module, and skip the Babel portion below.__
+
Node already supports a lot of __ES2015+__ features, but to avoid compatibility problems we suggest to install Babel and rename your `gulpfile.js` to `gulpfile.babel.js`.
```sh