Revert "Fix a mistake in the readme (#649)" (#651)

This reverts commit 9e41e740814df3bacbc89bec6e5305264f150751.
This commit is contained in:
Leah 2020-06-05 22:00:29 +02:00 committed by GitHub
parent 9e41e74081
commit 68087fd627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}
```