Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
node-version: [18.19.0]
node-version: [20.19.5]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -41,10 +41,13 @@ jobs:
cache: npm

- name: Install dependencies
run: npm ci
run: npm i

- name: Run run ESLint
run: npm run lint --if-present

- name: Run build library
run: npm run build:lib --if-present
run: npm run build:prod --if-present

- name: Run build example
run: npm run build:example-app --if-present
- name: Run build app
run: npm run demo:prod --if-present
11 changes: 7 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.19.0]
node-version: [20.19.5]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Check out repo
Expand All @@ -36,10 +36,13 @@ jobs:
cache: npm

- name: Install dependencies
run: npm ci
run: npm i

- name: Run build library
run: npm run build:lib --if-present
- name: Run run ESLint
run: npm run lint --if-present

- name: Run build only library
run: npm run build:prod --if-present

- name: Publish package
run: npm publish ./dist/angular-tree-component
Expand Down
13 changes: 0 additions & 13 deletions .npmignore

This file was deleted.

23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

147 changes: 0 additions & 147 deletions CONTRIBUTING.md

This file was deleted.

8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
[![npm version](https://badge.fury.io/js/%40circlon%2Fangular-tree-component.svg)](https://badge.fury.io/js/%40circlon%2Fangular-tree-component)
[![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)
<a href="https://angular-tree-component.herokuapp.com/"><img src="https://angular-tree-component.herokuapp.com/badge.svg" alt="slack" ></a>
# @talentia/angular-tree-component

# angular tree component
A simple yet powerful tree component for Angular

## Getting started

Install `angular-tree-component`:

```npm install @circlon/angular-tree-component```
```npm install @talentia/angular-tree-component```

Import `TreeModule`:

Expand Down
Loading