Skip to content

Commit 6e2e07a

Browse files
authored
Merge pull request #25 from UiPath/fix/npm_config
Improve README and add lib package metadata
2 parents 4a428ed + 0143e37 commit 6e2e07a

File tree

4 files changed

+52
-8
lines changed

4 files changed

+52
-8
lines changed

.npmrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,36 @@
1-
# UiPath - Angular Components Library
1+
<img src="https://raw.githubusercontent.com/UiPath/angular-components/master/logo.png" width="135" />
22

3-
Library of Angular components, directives, pipes, services or any other common stuff accros Angular apps in UiPath.
3+
# Angular Components Library
44

5+
A great set of reusable `@angular` components, directives and testing utilities.
6+
7+
One of our main goals is to allow easy integration with the great collection of components already provided by the `@angular/material` team and to build everything with the following in mind:
8+
9+
- 🤘 a11y
10+
- 🚀 performance
11+
- 💖 look and feel
12+
13+
[![npm](https://img.shields.io/npm/v/@uipath/angular.svg)](https://www.npmjs.com/package/@uipath/angular)
514
[![Build Status](https://uipath.visualstudio.com/angular-components/_apis/build/status/UiPath.angular-components?branchName=master)](https://uipath.visualstudio.com/angular-components/_build/latest?definitionId=387&branchName=master)
615
[![Test Coverage](https://api.codeclimate.com/v1/badges/61117dc99c96535bbfb2/test_coverage)](https://codeclimate.com/github/UiPath/angular-components/test_coverage)
716
[![Maintainability](https://api.codeclimate.com/v1/badges/61117dc99c96535bbfb2/maintainability)](https://codeclimate.com/github/UiPath/angular-components/maintainability)
17+
[![License](https://badgen.net/badge/license/MIT/blue)]()
18+
19+
## Browser Support
20+
21+
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
22+
| --------- | --------- | --------- | --------- |
23+
| IE11, Edge| last 2 versions| last 2 versions| last 2 versions
24+
25+
## Installation
26+
27+
`npm i @uipath/angular`
828

929
## Documentation
1030

1131
Visit our docs page [here](https://uipath.github.io/angular-components). Thanks go to the [@compodoc](https://compodoc.app/) team! 👌
1232

33+
## Coming Up (most likely v1)
1334

35+
- Getting Started / Contribution Guidlines
36+
- Enhanced Component Demo's

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "angular",
3-
"version": "0.9.0",
2+
"name": "angular-components",
3+
"version": "0.9.1",
44
"author": {
55
"name": "UiPath Inc",
66
"url": "https://github.com/UiPath/angular-components"
@@ -28,7 +28,8 @@
2828
"start": "ng serve",
2929
"build": "ng build",
3030
"build:theme": "scss-bundle -c scss-bundle.config.json",
31-
"build:prod": "npm-run-all lint build build:theme",
31+
"build:readme": "cpx ./README.md ./dist/angular",
32+
"build:prod": "npm-run-all lint build build:theme build:readme",
3233
"test:watch": "ng test",
3334
"test:coverage": "ng test --code-coverage --watch=false --browsers ChromeHeadless",
3435
"lint": "ng lint",

projects/angular/package.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
{
22
"name": "@uipath/angular",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
4+
"license": "MIT",
5+
"author": {
6+
"name": "UiPath Inc",
7+
"url": "https://github.com/UiPath/angular-components"
8+
},
9+
"keywords": [
10+
"angular",
11+
"components",
12+
"material",
13+
"ui",
14+
"ui-kit",
15+
"uipath"
16+
],
17+
"maintainers": [
18+
"adrian-macuc",
19+
"anbalase",
20+
"eugen-v",
21+
"sergiubologa",
22+
"toxik",
23+
"vasyop",
24+
"vladjerca"
25+
],
426
"peerDependencies": {
527
"@angular/animations": "^7.2.15",
628
"@angular/cdk": "^7.3.7",

0 commit comments

Comments
 (0)