Skip to content

Commit

Permalink
Don't Use esm Output Format (Alias) (#3468)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsn4ik committed Mar 29, 2020
1 parent dade1fc commit 618e7f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/04-tutorial.md
Expand Up @@ -381,7 +381,7 @@ You can build the same code for the browser via native ES modules, an AMD loader
For example, with `-f es` for native modules:

```
rollup src/main.js src/main2.js -f esm -d dist
rollup src/main.js src/main2.js -f es -d dist
```

```html
Expand Down
2 changes: 1 addition & 1 deletion docs/05-plugin-development.md
Expand Up @@ -41,7 +41,7 @@ export default ({
plugins: [myExample()],
output: [{
file: 'bundle.js',
format: 'esm'
format: 'es'
}]
});
```
Expand Down

0 comments on commit 618e7f6

Please sign in to comment.