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

Commit e67bc1c

Browse files
authored
Merge pull request #13 from hapinessjs/next
release(version): v6.4.1 to fix angular issue [#26128](https://github…
2 parents 853b2ff + 1cc8d8b commit e67bc1c

File tree

6 files changed

+2258
-1630
lines changed

6 files changed

+2258
-1630
lines changed

package.json

Lines changed: 24 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/ng-elements-loader-cli",
3-
"version": "6.4.0",
3+
"version": "6.4.1",
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",
@@ -24,18 +24,6 @@
2424
"WebComponent"
2525
],
2626
"contributors": [
27-
{
28-
"name": "Julien Fauville",
29-
"url": "https://github.com/Juneil"
30-
},
31-
{
32-
"name": "Antoine Gomez",
33-
"url": "https://github.com/antoinegomez"
34-
},
35-
{
36-
"name": "Sébastien Ritz",
37-
"url": "https://github.com/reptilbud"
38-
},
3927
{
4028
"name": "Nicolas Jessel",
4129
"url": "https://github.com/njl07"
@@ -46,41 +34,41 @@
4634
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4735
},
4836
"dependencies": {
49-
"@angular/common": "^6.1.0",
50-
"@angular/core": "^6.1.0",
51-
"@angular/compiler": "^6.1.0",
52-
"@angular/animations": "^6.1.0",
53-
"@angular/elements": "^6.1.0",
54-
"@angular/platform-browser": "^6.1.0",
55-
"@angular/platform-browser-dynamic": "^6.1.0",
37+
"@angular/common": "6.1.7",
38+
"@angular/core": "6.1.7",
39+
"@angular/compiler": "6.1.7",
40+
"@angular/animations": "6.1.7",
41+
"@angular/elements": "6.1.7",
42+
"@angular/platform-browser": "6.1.7",
43+
"@angular/platform-browser-dynamic": "6.1.7",
5644
"core-js": "^2.5.7",
5745
"document-register-element": "~1.8.1",
58-
"rxjs": "^6.2.2",
46+
"rxjs": "^6.3.3",
5947
"zone.js": "^0.8.26"
6048
},
6149
"devDependencies": {
62-
"@angular/compiler-cli": "^6.1.0",
63-
"@angular-devkit/build-ng-packagr": "~0.7.0",
64-
"@angular-devkit/build-angular": "~0.7.0",
65-
"ng-packagr": "^3.0.6",
66-
"tsickle": "^0.32.0",
50+
"@angular/compiler-cli": "6.1.7",
51+
"@angular-devkit/build-ng-packagr": "~0.8.3",
52+
"@angular-devkit/build-angular": "~0.8.3",
53+
"ng-packagr": "^4.2.0",
54+
"tsickle": "^0.33.0",
6755
"tslib": "^1.9.3",
6856
"typescript": "~2.9.2",
69-
"@angular/cli": "^6.1.0",
70-
"@angular/language-service": "^6.1.0",
57+
"@angular/cli": "^6.2.3",
58+
"@angular/language-service": "6.1.7",
7159
"@types/jasmine": "~2.8.8",
7260
"@types/jasminewd2": "~2.0.3",
73-
"@types/node": "~10.5.3",
74-
"codelyzer": "~4.4.2",
75-
"jasmine-core": "~3.1.0",
61+
"@types/node": "~10.11.0",
62+
"codelyzer": "~4.4.4",
63+
"jasmine-core": "~3.2.1",
7664
"jasmine-spec-reporter": "~4.2.1",
77-
"karma": "~2.0.5",
65+
"karma": "~3.0.0",
7866
"karma-chrome-launcher": "~2.2.0",
79-
"karma-coverage-istanbul-reporter": "~2.0.1",
67+
"karma-coverage-istanbul-reporter": "~2.0.4",
8068
"karma-jasmine": "~1.1.2",
81-
"karma-jasmine-html-reporter": "^1.2.0",
82-
"protractor": "~5.4.0",
83-
"ts-node": "~7.0.0",
69+
"karma-jasmine-html-reporter": "^1.3.1",
70+
"protractor": "~5.4.1",
71+
"ts-node": "~7.0.1",
8472
"tslint": "~5.11.0"
8573
}
8674
}

projects/custom-elements-loader/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Your `custom-element` module is now ready to be used so you have to publish it b
198198

199199
### 2) *made-with-love* custom element in your JavaScript application
200200

201-
Create a `JavaScript` application with your **module** and `@hapiness/ng-elements-loader` in dependencies.
201+
Create a `JavaScript` application with your **module** and `@hapiness/custom-elements-loader` in dependencies.
202202

203203
Install all `dependencies` your module must have if not already installed.
204204

@@ -408,6 +408,9 @@ document.querySelector('hello-world').addEventListener('sayHello', (event: any)
408408
[Back to top](#installation)
409409

410410
## Change History
411+
* v6.4.1 (2018-09-26)
412+
* Fix version to `Angular v6.1.7` to avoid the bug reported in this [issue](https://github.com/angular/angular/issues/26128)
413+
* Documentation
411414
* v6.4.0 (2018-07-26)
412415
* `Angular v6.1.0+`
413416
* Documentation
Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/custom-elements-loader",
3-
"version": "6.4.0",
3+
"version": "6.4.1",
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": {
@@ -20,18 +20,6 @@
2020
"Factory"
2121
],
2222
"contributors": [
23-
{
24-
"name": "Julien Fauville",
25-
"url": "https://github.com/Juneil"
26-
},
27-
{
28-
"name": "Antoine Gomez",
29-
"url": "https://github.com/antoinegomez"
30-
},
31-
{
32-
"name": "Sébastien Ritz",
33-
"url": "https://github.com/reptilbud"
34-
},
3523
{
3624
"name": "Nicolas Jessel",
3725
"url": "https://github.com/njl07"
@@ -42,17 +30,17 @@
4230
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4331
},
4432
"dependencies": {
45-
"@angular/animations": "^6.1.0",
46-
"@angular/common": "^6.1.0",
47-
"@angular/core": "^6.1.0",
48-
"@angular/compiler": "^6.1.0",
49-
"@angular/elements": "^6.1.0",
50-
"@angular/platform-browser": "^6.1.0",
51-
"@angular/platform-browser-dynamic": "^6.1.0",
52-
"@hapiness/ng-elements-loader": "^6.4.0",
33+
"@angular/animations": "6.1.7",
34+
"@angular/common": "6.1.7",
35+
"@angular/core": "6.1.7",
36+
"@angular/compiler": "6.1.7",
37+
"@angular/elements": "6.1.7",
38+
"@angular/platform-browser": "6.1.7",
39+
"@angular/platform-browser-dynamic": "6.1.7",
40+
"@hapiness/ng-elements-loader": "^6.4.1",
5341
"core-js": "^2.5.7",
5442
"document-register-element": "~1.8.1",
55-
"rxjs": "^6.2.2",
43+
"rxjs": "^6.3.3",
5644
"zone.js": "^0.8.26"
5745
}
5846
}

projects/ng-elements-loader/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
This module exposes an `Angular's` service to load easily [custom elements](https://angular.io/guide/elements) in your `Angular` application.
3434

35-
We support `Angular` version `6.1.0+`.
35+
We support `Angular` version `6.1.7-`.
3636

3737
## Installation
3838

@@ -406,6 +406,9 @@ this._rd.listen(element, 'sayHello', (event: any) => this.alertHello(event.detai
406406
[Back to top](#installation)
407407

408408
## Change History
409+
* v6.4.1 (2018-09-26)
410+
* Fix version to `Angular v6.1.7` to avoid the bug reported in this [issue](https://github.com/angular/angular/issues/26128)
411+
* Documentation
409412
* v6.4.0 (2018-07-26)
410413
* `Angular v6.1.0+`
411414
* Documentation
Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/ng-elements-loader",
3-
"version": "6.4.0",
3+
"version": "6.4.1",
44
"description": "Service to load Angular Custom Elements inside Angular's applications",
55
"private": false,
66
"repository": {
@@ -17,18 +17,6 @@
1717
"WebComponent"
1818
],
1919
"contributors": [
20-
{
21-
"name": "Julien Fauville",
22-
"url": "https://github.com/Juneil"
23-
},
24-
{
25-
"name": "Antoine Gomez",
26-
"url": "https://github.com/antoinegomez"
27-
},
28-
{
29-
"name": "Sébastien Ritz",
30-
"url": "https://github.com/reptilbud"
31-
},
3220
{
3321
"name": "Nicolas Jessel",
3422
"url": "https://github.com/njl07"
@@ -39,15 +27,15 @@
3927
"url": "https://github.com/hapinessjs/ng-elements-loader/issues"
4028
},
4129
"peerDependencies": {
42-
"@angular/common": "^6.1.0",
43-
"@angular/core": "^6.1.0",
44-
"@angular/compiler": "^6.1.0",
45-
"@angular/elements": "^6.1.0",
46-
"@angular/platform-browser": "^6.1.0",
47-
"@angular/platform-browser-dynamic": "^6.1.0",
30+
"@angular/common": "6.1.7",
31+
"@angular/core": "6.1.7",
32+
"@angular/compiler": "6.1.7",
33+
"@angular/elements": "6.1.7",
34+
"@angular/platform-browser": "6.1.7",
35+
"@angular/platform-browser-dynamic": "6.1.7",
4836
"core-js": "^2.5.7",
4937
"document-register-element": "~1.8.1",
50-
"rxjs": "^6.2.2",
38+
"rxjs": "^6.3.3",
5139
"zone.js": "^0.8.26"
5240
}
5341
}

0 commit comments

Comments
 (0)