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

Commit bf94b62

Browse files
authored
Merge pull request #5 from hapinessjs/next
release(version): v6.0.3
2 parents 653d5d7 + 2c7dd6e commit bf94b62

File tree

6 files changed

+389
-271
lines changed

6 files changed

+389
-271
lines changed

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/ng-elements-loader-cli",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "Angular CLI project to manage @hapiness/ng-elements-loader and @hapiness/custom-elements-loader projects",
55
"scripts": {
66
"build:ng": "ng build 'ng-elements-loader' --prod",
@@ -45,30 +45,30 @@
4545
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4646
},
4747
"dependencies": {
48-
"@angular/common": "^6.0.1",
49-
"@angular/core": "^6.0.1",
50-
"@angular/compiler": "^6.0.1",
51-
"@angular/elements": "^6.0.1",
52-
"@angular/platform-browser": "^6.0.1",
53-
"@angular/platform-browser-dynamic": "^6.0.1",
48+
"@angular/common": "^6.0.3",
49+
"@angular/core": "^6.0.3",
50+
"@angular/compiler": "^6.0.3",
51+
"@angular/elements": "^6.0.3",
52+
"@angular/platform-browser": "^6.0.3",
53+
"@angular/platform-browser-dynamic": "^6.0.3",
5454
"document-register-element": "^1.8.1",
5555
"core-js": "^2.5.6",
56-
"rxjs": "^6.1.0",
56+
"rxjs": "^6.2.0",
5757
"zone.js": "^0.8.26"
5858
},
5959
"devDependencies": {
60-
"@angular/compiler-cli": "^6.0.1",
61-
"@angular-devkit/build-ng-packagr": "~0.6.1",
62-
"@angular-devkit/build-angular": "~0.6.1",
60+
"@angular/compiler-cli": "^6.0.3",
61+
"@angular-devkit/build-ng-packagr": "~0.6.5",
62+
"@angular-devkit/build-angular": "~0.6.5",
6363
"ng-packagr": "^3.0.0-rc.5 || ^3.0.0",
64-
"tsickle": "^0.28.0",
64+
"tsickle": "^0.29.0",
6565
"tslib": "^1.9.0",
6666
"typescript": "~2.7.2",
67-
"@angular/cli": "~6.0.1",
68-
"@angular/language-service": "^6.0.1",
67+
"@angular/cli": "^6.0.5",
68+
"@angular/language-service": "^6.0.3",
6969
"@types/jasmine": "~2.8.6",
7070
"@types/jasminewd2": "~2.0.3",
71-
"@types/node": "~10.0.8",
71+
"@types/node": "~10.1.2",
7272
"codelyzer": "~4.3.0",
7373
"jasmine-core": "~2.99.1",
7474
"jasmine-spec-reporter": "~4.2.1",
@@ -78,7 +78,7 @@
7878
"karma-jasmine": "~1.1.1",
7979
"karma-jasmine-html-reporter": "^0.2.2",
8080
"protractor": "~5.3.0",
81-
"ts-node": "~6.0.3",
81+
"ts-node": "~6.0.5",
8282
"tslint": "~5.10.0"
8383
}
8484
}

projects/custom-elements-loader/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ The minimum `package.json` file for your module is described below:
183183
"name": "made-with-love",
184184
"version": "1.0.0",
185185
"peerDependencies": {
186-
"@hapiness/custom-elements-loader": "^6.0.2"
186+
"@hapiness/custom-elements-loader": "^6.0.3"
187187
}
188188
}
189189
```
@@ -408,6 +408,9 @@ document.querySelector('hello-world').addEventListener('sayHello', (event: any)
408408
[Back to top](#installation)
409409

410410
## Change History
411+
* v6.0.3 (2018-05-25)
412+
* `Angular v6.0.3+`
413+
* Documentation
411414
* v6.0.2 (2018-05-13)
412415
* Delete barrels
413416
* Documentation

projects/custom-elements-loader/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/custom-elements-loader",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "Factory to load Angular Custom Elements inside JavaScript's applications like React.js, Vue.js or just standalone",
55
"private": false,
66
"repository": {
@@ -42,16 +42,16 @@
4242
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4343
},
4444
"dependencies": {
45-
"@angular/common": "^6.0.1",
46-
"@angular/core": "^6.0.1",
47-
"@angular/compiler": "^6.0.1",
48-
"@angular/elements": "^6.0.1",
49-
"@angular/platform-browser": "^6.0.1",
50-
"@angular/platform-browser-dynamic": "^6.0.1",
51-
"@hapiness/ng-elements-loader": "^6.0.2",
45+
"@angular/common": "^6.0.3",
46+
"@angular/core": "^6.0.3",
47+
"@angular/compiler": "^6.0.3",
48+
"@angular/elements": "^6.0.3",
49+
"@angular/platform-browser": "^6.0.3",
50+
"@angular/platform-browser-dynamic": "^6.0.3",
51+
"@hapiness/ng-elements-loader": "^6.0.3",
5252
"core-js": "^2.5.6",
5353
"document-register-element": "^1.8.1",
54-
"rxjs": "^6.1.0",
54+
"rxjs": "^6.2.0",
5555
"zone.js": "^0.8.26"
5656
}
5757
}

projects/ng-elements-loader/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ The minimum `package.json` file for your module is described below:
187187
"name": "made-with-love",
188188
"version": "1.0.0",
189189
"peerDependencies": {
190-
"@angular/common": "^6.0.1",
191-
"@angular/core": "^6.0.1",
192-
"@hapiness/ng-elements-loader": "^6.0.2"
190+
"@angular/common": "^6.0.3",
191+
"@angular/core": "^6.0.3",
192+
"@hapiness/ng-elements-loader": "^6.0.3"
193193
}
194194
}
195195
```
@@ -410,6 +410,9 @@ this._rd.listen(element, 'sayHello', (event: any) => this.alertHello(event.detai
410410
[Back to top](#installation)
411411

412412
## Change History
413+
* v6.0.3 (2018-05-25)
414+
* `Angular v6.0.3+`
415+
* Documentation
413416
* v6.0.2 (2018-05-13)
414417
* Delete barrels for `universal` rendering
415418
* Documentation

projects/ng-elements-loader/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/ng-elements-loader",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "Service to load Angular Custom Elements inside Angular's applications",
55
"private": false,
66
"repository": {
@@ -39,15 +39,15 @@
3939
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4040
},
4141
"peerDependencies": {
42-
"@angular/common": "^6.0.1",
43-
"@angular/core": "^6.0.1",
44-
"@angular/compiler": "^6.0.1",
45-
"@angular/elements": "^6.0.1",
46-
"@angular/platform-browser": "^6.0.1",
47-
"@angular/platform-browser-dynamic": "^6.0.1",
42+
"@angular/common": "^6.0.3",
43+
"@angular/core": "^6.0.3",
44+
"@angular/compiler": "^6.0.3",
45+
"@angular/elements": "^6.0.3",
46+
"@angular/platform-browser": "^6.0.3",
47+
"@angular/platform-browser-dynamic": "^6.0.3",
4848
"core-js": "^2.5.6",
4949
"document-register-element": "^1.8.1",
50-
"rxjs": "^6.1.0",
50+
"rxjs": "^6.2.0",
5151
"zone.js": "^0.8.26"
5252
}
5353
}

0 commit comments

Comments
 (0)