Skip to content

Commit

Permalink
Fix module name in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
doesdev authored Jun 11, 2018
1 parent 2be9c1c commit dafa44e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ npm install --save-dev rollup-plugin-analyzer

### from rollup config
```js
import { plugin as analyze } from 'rollup-analyzer-plugin'
import { plugin as analyze } from 'rollup-plugin-analyzer'

export default {
entry: 'module.js',
Expand All @@ -42,7 +42,7 @@ export default {
### from build script
```js
import { rollup } from 'rollup'
import { plugin as analyze } from 'rollup-analyzer-plugin'
import { plugin as analyze } from 'rollup-plugin-analyzer'

rollup({
entry: 'main.js',
Expand All @@ -53,7 +53,7 @@ rollup({
### CI usage example
```js
import { rollup } from 'rollup'
import { plugin as analyze } from 'rollup-analyzer-plugin'
import { plugin as analyze } from 'rollup-plugin-analyzer'
const limitBytes = 1e6

const onAnalysis = ({bundleSize}) => {
Expand Down

0 comments on commit dafa44e

Please sign in to comment.