Skip to content

Commit 2bff72d

Browse files
committed
update readme, version for 9.0.0
1 parent 05813a5 commit 2bff72d

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

.circleci/config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ jobs:
7373
# Authenticate with registry
7474
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc
7575

76-
- run: echo "//registry.npmjs.org/:_authToken=$DUMMY_VAR" > ~/repo/foo
77-
78-
- run: cat ~/repo/foo
79-
8076
- run: ls -lsa
8177

8278
# deploy to npm

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
This library provides an Angular Elements Strategy Factory which always runs in the NgZone, allowing automatic change detection
44

5-
![license](https://img.shields.io/npm/l/elements-zone-strategy.svg) ![downloads](https://img.shields.io/npm/dt/elements-zone-strategy.svg)
5+
![license](https://img.shields.io/npm/l/elements-zone-strategy.svg) ![downloads](https://img.shields.io/npm/dt/elements-zone-strategy.svg)
66

77
This addresses the following issues with @angular/elements:
8-
* [#23841 - elements: change detection breaks in *ngFor loop](https://github.com/angular/angular/issues/23841)
9-
* [#24181 - @angular/elements component events are called from an inconsistent zone](https://github.com/angular/angular/issues/24181) -- This is fixed in zone.js v0.8.27
108

9+
- [#23841 - elements: change detection breaks in \*ngFor loop](https://github.com/angular/angular/issues/23841)
10+
- [#24181 - @angular/elements component events are called from an inconsistent zone](https://github.com/angular/angular/issues/24181) -- This is fixed in zone.js v0.8.27
1111

1212
## Usage
1313

14-
install the package:
14+
install the package:
1515

1616
npm install --save elements-zone-strategy
1717

@@ -22,3 +22,9 @@ use the new strategy:
2222
const strategyFactory = new ElementZoneStrategyFactory(HelloComponent, this.injector);
2323
const helloElement = createCustomElement(HelloComponent, { injector: this.injector, strategyFactory });
2424
customElements.define('my-hello', helloElement);
25+
26+
## Versions
27+
28+
use version 9.0.0 for Angular 9
29+
30+
use version 8.0.0 for Angular 6-8

projects/elements-zone-strategy/README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
This library provides an Angular Elements Strategy Factory which always runs in the NgZone, allowing automatic change detection
44

5-
![license](https://img.shields.io/npm/l/elements-zone-strategy.svg) ![downloads](https://img.shields.io/npm/dt/elements-zone-strategy.svg)
5+
![license](https://img.shields.io/npm/l/elements-zone-strategy.svg) ![downloads](https://img.shields.io/npm/dt/elements-zone-strategy.svg)
66

77
This addresses the following issues with @angular/elements:
8-
* [#23841 - elements: change detection breaks in *ngFor loop](https://github.com/angular/angular/issues/23841)
9-
* [#24181 - @angular/elements component events are called from an inconsistent zone](https://github.com/angular/angular/issues/24181) -- This is fixed in zone.js v0.8.27
108

9+
- [#23841 - elements: change detection breaks in \*ngFor loop](https://github.com/angular/angular/issues/23841)
10+
- [#24181 - @angular/elements component events are called from an inconsistent zone](https://github.com/angular/angular/issues/24181) -- This is fixed in zone.js v0.8.27
1111

1212
## Usage
1313

14-
install the package:
14+
install the package:
1515

1616
npm install --save elements-zone-strategy
1717

@@ -22,3 +22,9 @@ use the new strategy:
2222
const strategyFactory = new ElementZoneStrategyFactory(HelloComponent, this.injector);
2323
const helloElement = createCustomElement(HelloComponent, { injector: this.injector, strategyFactory });
2424
customElements.define('my-hello', helloElement);
25+
26+
## Versions
27+
28+
use version 9.0.0 for Angular 9
29+
30+
use version 8.0.0 for Angular 6-8

projects/elements-zone-strategy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elements-zone-strategy",
3-
"version": "9.0.0-beta.5",
3+
"version": "9.0.0",
44
"description": "A custom NgElementStrategyFactory to enable zone-based change detection for Angular Elements",
55
"author": "remackgeek",
66
"license": "MIT",

0 commit comments

Comments
 (0)