Skip to content

Commit 0c35c8b

Browse files
1 parent fe4abfb commit 0c35c8b

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
<a name="0.19.0"></a>
2+
# [0.19.0](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.18.5...0.19.0) (2019-01-03)
3+
4+
5+
### Bug Fixes
6+
7+
* **angular:** support angular lazy routes in preview ([#753](https://github.com/NativeScript/nativescript-dev-webpack/issues/753)) ([a6c23da](https://github.com/NativeScript/nativescript-dev-webpack/commit/a6c23da))
8+
* **Angular:** add hot loader for lazy loaded NgModules ([#747](https://github.com/NativeScript/nativescript-dev-webpack/issues/747)) ([6a9db32](https://github.com/NativeScript/nativescript-dev-webpack/commit/6a9db32))
9+
* **Vue:** disable mangling of function names when building in production mode ([#743](https://github.com/NativeScript/nativescript-dev-webpack/issues/743)) ([fffcf66](https://github.com/NativeScript/nativescript-dev-webpack/commit/fffcf66)), closes [/github.com/NativeScript/nativescript-dev-webpack/blob/master/CONTRIBUTING.md#testing-locally-by-running-e2](https://github.com//github.com/NativeScript/nativescript-dev-webpack/blob/master/CONTRIBUTING.md/issues/testing-locally-by-running-e2)
10+
11+
12+
### Features
13+
14+
* **TypeScript:** use `ts-loader` instead of `awesome-typescript-loader` ([#738](https://github.com/NativeScript/nativescript-dev-webpack/issues/738)) ([7f67198](https://github.com/NativeScript/nativescript-dev-webpack/commit/7f67198))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* **Angular:** The `lazy-ngmodule-hot-loader` should be added to the webpack configuration.
20+
21+
**BEFORE**
22+
``` js
23+
// webpack.config.js
24+
{
25+
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
26+
use: [
27+
"nativescript-dev-webpack/moduleid-compat-loader",
28+
"@ngtools/webpack",
29+
]
30+
},
31+
// ...
32+
```
33+
34+
**AFTER**
35+
``` js
36+
// webpack.config.js
37+
{
38+
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
39+
use: [
40+
"nativescript-dev-webpack/moduleid-compat-loader",
41+
"nativescript-dev-webpack/lazy-ngmodule-hot-loader",
42+
"@ngtools/webpack",
43+
]
44+
},
45+
// ...
46+
```
47+
48+
49+
150
<a name="0.18.5"></a>
251
## [0.18.5](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.18.3...0.18.5) (2018-12-17)
352

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-dev-webpack",
3-
"version": "0.18.5",
3+
"version": "0.19.0",
44
"main": "index",
55
"description": "",
66
"homepage": "http://www.telerik.com",

0 commit comments

Comments
 (0)