Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b8c772b

Browse files
Merge pull request #20 from EOSIO/update-package-name
Update package name
2 parents 27e2b39 + 6c11c8a commit b8c772b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
# UAL Renderer for ReactJS ![EOSIO Alpha](https://img.shields.io/badge/EOSIO-Alpha-blue.svg)
22

3-
This library provides a React renderer around the [Universal Authenticator Library](https://github.com/EOSIO/universal-authenticator-library).
3+
This library provides a React renderer around the [Universal Authenticator Library](https://github.com/EOSIO/universal-authenticator-library).
44

55
## Getting Started
66
#### With ``yarn``
77
```bash
8-
yarn add @blockone/ual-reactjs-renderer
8+
yarn add ual-reactjs-renderer
99
```
1010
Then, install the authenticators that you wish to use...
1111
```bash
12-
yarn add @blockone/ual-scatter @blockone/ual-lynx
12+
yarn add ual-scatter ual-lynx
1313
```
1414
#### With ``npm``
1515
```bash
16-
npm i @blockone/ual-reactjs-renderer
16+
npm i ual-reactjs-renderer
1717
```
1818
Then, install the authenticators that you wish to use...
1919
```bash
20-
npm i @blockone/ual-scatter @blockone/ual-lynx
20+
npm i ual-scatter ual-lynx
2121
```
2222

2323
## Basic Usage
2424
```javascript
2525
import React from 'react'
2626
import ReactDOM from 'react-dom'
27-
import { UALProvider, withUAL } from '@blockone/ual-reactjs-renderer'
28-
import { Scatter } from '@blockone/ual-scatter'
29-
import { Lynx } from '@blockone/ual-lynx'
27+
import { UALProvider, withUAL } from 'ual-reactjs-renderer'
28+
import { Scatter } from 'ual-scatter'
29+
import { Lynx } from 'ual-lynx'
3030

3131
import { MyApp } from './MyApp'
3232

@@ -83,7 +83,7 @@ yarn build -w
8383
In a duplicate terminal tab, enter the following commands:
8484
```bash
8585
cd examples
86-
yarn link @blockone/ual-reactjs-renderer
86+
yarn link ual-reactjs-renderer
8787
yarn
8888
yarn example
8989
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@blockone/ual-reactjs-renderer",
3-
"version": "0.0.38",
2+
"name": "ual-reactjs-renderer",
3+
"version": "0.1.0",
44
"main": "dist/index.js",
55
"author": {
66
"name": "block.one",
@@ -21,7 +21,7 @@
2121
"docs": "jsdoc src -r -d docs"
2222
},
2323
"dependencies": {
24-
"@blockone/universal-authenticator-library": "^0.0.33",
24+
"@blockone/universal-authenticator-library": "0.0.34",
2525
"i18next": "^14.0.1",
2626
"i18next-browser-languagedetector": "^2.2.4",
2727
"prop-types": "^15.7.1",

0 commit comments

Comments
 (0)