mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
chore: update changelog to include webpack update
This commit is contained in:
23
CHANGELOG.md
23
CHANGELOG.md
@ -142,6 +142,29 @@ Angular has been updated to 2.0.0-beta.13. Issue [#5060](https://github.com/drif
|
||||
}
|
||||
```
|
||||
|
||||
#### Webpack Users
|
||||
|
||||
Update your `webpack.config.js` from:
|
||||
|
||||
```js
|
||||
entry: [
|
||||
path.normalize('es6-shim/es6-shim.min'),
|
||||
'reflect-metadata',
|
||||
path.normalize('zone.js/dist/zone-microtask'),
|
||||
path.resolve('app/app')
|
||||
],
|
||||
```
|
||||
|
||||
to:
|
||||
|
||||
```js
|
||||
entry: [
|
||||
path.normalize('es6-shim/es6-shim.min'),
|
||||
'reflect-metadata',
|
||||
path.normalize('zone.js/dist/zone'),
|
||||
path.resolve('app/app')
|
||||
],
|
||||
```
|
||||
|
||||
|
||||
<a name="2.0.0-beta.3"></a>
|
||||
|
Reference in New Issue
Block a user