Skip to content

Commit

Permalink
Update corrections.md
Browse files Browse the repository at this point in the history
  • Loading branch information
landvibe committed Jul 18, 2019
1 parent 5237fc1 commit c630d15
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions corrections.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,22 @@ export const getAgeLimit = state => state.friend.ageLimit;
export const getShowLimit = state => state.friend.showLimit;
```

## 7

### 위치: p351, 코드 7-65

내용: clean-webpack-plugin major 버전이 올라가면서 내보내는 방식이 변경됐습니다.

Before
```js
const CleanWebpackPlugin = require('clean-webpack-plugin');
```

After
```js
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
```

## 9

### 위치: p468, 코드 9-64
Expand Down

0 comments on commit c630d15

Please sign in to comment.