summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2019-05-19 19:16:37 -0700
committerGitHub <noreply@github.com>2019-05-19 19:16:37 -0700
commite19cee4ca8a5d7feb2e3cfeb1d10f028643786f1 (patch)
tree76e6681c3c366c8e0a6dc58ce74856ca8fc3ee9c /README.md
parent902b8d0c82308c94b827bad7f597f516bd2b50c6 (diff)
downloadasync-e19cee4ca8a5d7feb2e3cfeb1d10f028643786f1.tar.gz
feat: Add .mjs bundle and pkg.main to CJS build (#1642)
* feat: add mjs bundle and pkg.main to CJS build * update docs
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8baf486..e137db3 100644
--- a/README.md
+++ b/README.md
@@ -8,9 +8,9 @@
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/async/badge?style=rounded)](https://www.jsdelivr.com/package/npm/async)
-Async is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm install async`, it can also be used directly in the browser.
+Async is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm install async`, it can also be used directly in the browser. A ESM version is included in the main `async` package that should automatically be used with compatible bundlers such as Webpack and Rollup.
-This version of the package is optimized for the Node.js environment. If you use Async with webpack, install [`async-es`](https://www.npmjs.com/package/async-es) instead.
+A pure ESM version of Async is available as [`async-es`](https://www.npmjs.com/package/async-es).
For Documentation, visit <https://caolan.github.io/async/>