Skip to content

Commit 50c1a9e

Browse files
author
Tobias Engelhardt
committed
chore: release 9.0.1
1 parent fbba806 commit 50c1a9e

File tree

4 files changed

+82
-6
lines changed

4 files changed

+82
-6
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
<a name="9.0.1"></a>
2+
# 9.0.1 (2020-07-15)
3+
4+
### BREAKING CHANGES
5+
6+
* move to new npm package scope
7+
8+
BEFORE:
9+
10+
package.json:
11+
12+
```
13+
"dependencies": {
14+
...
15+
"angular-tree-component": "^8.5.6",
16+
...
17+
}
18+
```
19+
20+
AFTER:
21+
22+
package.json
23+
24+
```
25+
"dependencies": {
26+
...
27+
"@circlon/angular-tree-component": "^9.0.1",
28+
...
29+
}
30+
```
31+
32+
* move css file to css folder instead of dist
33+
34+
BEFORE:
35+
36+
Import angular tree css:
37+
38+
```
39+
@import '~angular-tree-component/dist/angular-tree-component.css';
40+
```
41+
42+
AFTER:
43+
44+
package.json
45+
46+
```
47+
@import '~@circlon/angular-tree-component/css/angular-tree-component.css';
48+
```
49+
150
<a name="9.0.0"></a>
251
# 9.0.0 (2020-07-10)
352

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
[![npm version](https://badge.fury.io/js/angular-tree-component.svg)](https://badge.fury.io/js/angular-tree-component)
1+
[![npm version](https://badge.fury.io/js/%40circlon%2Fangular-tree-component.svg)](https://badge.fury.io/js/%40circlon%2Fangular-tree-component)
2+
[![Build Status](https://dev.azure.com/pdsgmbh/AngularTree/_apis/build/status/AngularTreeComponent-CI?branchName=master)](https://dev.azure.com/pdsgmbh/AngularTree/_build/latest?definitionId=59&branchName=master)
3+
<a href="https://angular-tree-component.herokuapp.com/"><img src="https://angular-tree-component.herokuapp.com/badge.svg" alt="slack" ></a>
24

35
# angular tree component
46

@@ -8,7 +10,32 @@ We are happy to announce, that starting today, [Circlon | group](https://circlon
810
We're going on this journey with the strong belief, that this component should not be missed by the community, and we are hoping on your continuous and significant support as always.
911
On this new journey we will also receive technical guidance from [Adam](https://github.com/adamkleingit), who will help us to better understand the community, their needs and also to elevate this component to a completely new level of engineering.
1012

11-
## Getting started, Docs, Demos & More
13+
## Getting started
14+
15+
Install `angular-tree-component`:
16+
17+
```npm install --save @circlon/angular-tree-component```
18+
19+
Import `TreeModule`:
20+
21+
```
22+
import { TreeModule } from '@circlon/angular-tree-component';
23+
24+
@NgModule({
25+
declarations: [AppComponent],
26+
imports: [TreeModule],
27+
bootstrap: [AppComponent]
28+
})
29+
export class AppModule {}
30+
```
31+
32+
Add css to `styles.scss` or include in `angular.json`:
33+
34+
```
35+
@import '~@circlon/angular-tree-component/css/angular-tree-component.css';
36+
```
37+
38+
## Docs, Demos & More
1239

1340
[https://angular2-tree.readme.io/docs/](https://angular2-tree.readme.io/docs/)
1441

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "angular-tree-component",
3-
"version": "9.0.0",
2+
"name": "@circlon/angular-tree-component",
3+
"version": "9.0.1",
44
"description": "A simple yet powerful tree component for Angular2",
55
"author": "Circlon Group <os-group@circlon.de>",
66
"homepage": "https://github.com/CirclonGroup/angular-tree-component",

projects/angular-tree-component/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "angular-tree-component",
3-
"version": "9.0.0",
2+
"name": "@circlon/angular-tree-component",
3+
"version": "9.0.1",
44
"peerDependencies": {
55
"core-js": "^2.5.4",
66
"lodash-es": "^4.17.15",

0 commit comments

Comments
 (0)