From 68087fd62778cd315b2f14fae2a80ddd47e79751 Mon Sep 17 00:00:00 2001 From: Leah Date: Fri, 5 Jun 2020 22:00:29 +0200 Subject: [PATCH] Revert "Fix a mistake in the readme (#649)" (#651) This reverts commit 9e41e740814df3bacbc89bec6e5305264f150751. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8c584a..b5f6647 100644 --- a/README.md +++ b/README.md @@ -172,8 +172,8 @@ Microbundle uses the fields from your `package.json` to figure out where it shou { "main": "dist/foo.js", // CommonJS bundle "umd:main": "dist/foo.umd.js", // UMD bundle - "module": "dist/foo.m.js", // Modern bundle - "esmodule": "dist/foo.modern.js", // ES Modules bundle + "module": "dist/foo.m.js", // ES Modules bundle + "esmodule": "dist/foo.modern.js", // Modern bundle "types": "dist/foo.d.ts" // TypeScript typings } ```