Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit be965ec

Browse files
release: cut the 0.19.0 release
1 parent a6c23da commit be965ec

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

Diff for: CHANGELOG.md

+51
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
<a name="0.19.0"></a>
2+
# [0.19.0](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.18.3...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+
* **JS/TS:** use webpack resolver instead of Node.js resolver ([#681](https://github.com/NativeScript/nativescript-dev-webpack/issues/681)) ([9adc7e7](https://github.com/NativeScript/nativescript-dev-webpack/commit/9adc7e7))
10+
* **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)
11+
12+
13+
### Features
14+
15+
* **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))
16+
* **Vue:** add support for TypeScript ([#734](https://github.com/NativeScript/nativescript-dev-webpack/issues/734)) ([d290515](https://github.com/NativeScript/nativescript-dev-webpack/commit/d290515))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* **Angular:** The `lazy-ngmodule-hot-loader` should be added to the webpack configuration.
22+
23+
**BEFORE**
24+
``` js
25+
// webpack.config.js
26+
{
27+
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
28+
use: [
29+
"nativescript-dev-webpack/moduleid-compat-loader",
30+
"@ngtools/webpack",
31+
]
32+
},
33+
// ...
34+
```
35+
36+
**AFTER**
37+
``` js
38+
// webpack.config.js
39+
{
40+
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
41+
use: [
42+
"nativescript-dev-webpack/moduleid-compat-loader",
43+
"nativescript-dev-webpack/lazy-ngmodule-hot-loader",
44+
"@ngtools/webpack",
45+
]
46+
},
47+
// ...
48+
```
49+
50+
51+
152
<a name="0.18.5"></a>
253
## [0.18.5](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.18.3...0.18.5) (2018-12-17)
354

Diff for: package.json

+1-1
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)