From 904c74d4cb22d5a7f834d6c1138c4707808c5b59 Mon Sep 17 00:00:00 2001 From: Pedro Augusto de Paula Barbosa Date: Mon, 4 Nov 2019 17:24:01 -0300 Subject: [PATCH] Docs: Fix esm link in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2139f8f03..bf8cd3859 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ exports.default = build; ## 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.__ +__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](https://github.com/standard-things/esm) 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`.