Skip to content

Commit 120d334

Browse files
committed
fix: update library name
1 parent 9a79a50 commit 120d334

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ React Native library with Android native view which supports same shadows styles
55
## Installation
66

77
```sh
8-
npm install react-native-shadow-view
8+
npm install @dimaportenko/react-native-shadow-view
99
```
1010

1111
## Usage
1212

1313
```js
14-
import { ShadowView } from 'react-native-shadow-view';
14+
import { ShadowView } from '@dimaportenko/react-native-shadow-view';
1515

1616
// ...
1717

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react';
22

33
import { StyleSheet, View } from 'react-native';
4-
import { ShadowView } from 'react-native-shadow-view';
4+
import { ShadowView } from '@dimaportenko/react-native-shadow-view';
55

66
export default function App() {
77
return (

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dimaportenko/react-native-shadow-view",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "React Native library with Android native view which supports same shadows styles as iOS ",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": "./",
44
"paths": {
5-
"react-native-shadow-view": ["./src/index"]
5+
"@dimaportenko/react-native-shadow-view": ["./src/index"]
66
},
77
"allowUnreachableCode": false,
88
"allowUnusedLabels": false,

0 commit comments

Comments
 (0)