Skip to content

Commit 0ab65cc

Browse files
committed
release: cut the 0.14.0 release
1 parent ba68a1b commit 0ab65cc

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

Diff for: CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
<a name="0.14.0"></a>
2+
# [0.14.0](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.12.0...0.14.0) (2018-06-22)
3+
4+
5+
### Bug Fixes
6+
7+
* register UI modules in NG apps ([#570](https://github.com/NativeScript/nativescript-dev-webpack/issues/570)) ([c27e0db](https://github.com/NativeScript/nativescript-dev-webpack/commit/c27e0db))
8+
9+
10+
### Features
11+
12+
* make webpack deps production deps of the plugin ([#571](https://github.com/NativeScript/nativescript-dev-webpack/issues/571)) ([ba68a1b](https://github.com/NativeScript/nativescript-dev-webpack/commit/ba68a1b)), closes [#569](https://github.com/NativeScript/nativescript-dev-webpack/issues/569)
13+
14+
15+
### BREAKING CHANGES
16+
17+
* The dependencies that were previously added by the nativescript-dev-webpack plugin to the project's package.json are now dependencies of the plugin itself.
18+
19+
MIGRATION:
20+
1. Remove all obsolete dependencies from your project. You can do that by invoking the script:
21+
```
22+
./node_modules/.bin/update-ns-webpack --deps
23+
```
24+
2. [Angular] Add the following packages as devDependencies:
25+
```
26+
//package.json
27+
28+
"devDependencies": {
29+
"@angular-devkit/build-angular": "~0.7.0-rc.0",
30+
"@angular/compiler-cli": "~6.1.0-beta.1",
31+
//...
32+
}
33+
```
34+
35+
If you see one of the following errors:
36+
```
37+
Error: Cannot find module '@ngtools/webpack'
38+
Error: No module factory available for dependency type: ContextElementDependency
39+
Error: Cannot find module '/Users/nsbuilduser/workspace/master-nativescript-sdk-examples-js-android/nativescript-sdk-examples-js/node_modules/webpack/bin/webpack.js
40+
```
41+
42+
try running a clean npm install:
43+
```
44+
rm -rf node_modules package-lock.json
45+
npm i
46+
```
47+
48+
49+
150
<a name="0.13.0"></a>
251
# [0.13.0](https://github.com/NativeScript/nativescript-dev-webpack/compare/0.12.0...0.13.0) (2018-06-13)
352

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.13.0",
3+
"version": "0.14.0",
44
"main": "index",
55
"description": "",
66
"homepage": "http://www.telerik.com",

0 commit comments

Comments
 (0)