File tree Expand file tree Collapse file tree 5 files changed +11
-22
lines changed Expand file tree Collapse file tree 5 files changed +11
-22
lines changed Original file line number Diff line number Diff line change
1
+ CONTRIBUTING.md
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @mrakesh0608/react-native-loading-dots" ,
3
- "version" : " 1.0.6 " ,
3
+ "version" : " 1.0.9 " ,
4
4
"description" : " A Loading Dots Component for React Native" ,
5
5
"repository" : {
6
6
"type" : " git" ,
10
10
"bugs" : {
11
11
"url" : " https://github.com/mrakesh0608/react-native-loading-dots/issues"
12
12
},
13
+ "author" : " Merugu Rakesh" ,
14
+ "license" : " MIT" ,
13
15
"keywords" : [
14
16
" rn" ,
15
17
" react" ,
19
21
" loading-dots" ,
20
22
" react-native-loading-dots"
21
23
],
22
- "author" : " Merugu Rakesh" ,
23
- "license" : " MIT" ,
24
- "main" : " src/index.tsx" ,
25
- "module" : " src/index.tsx" ,
26
- "files" : [
27
- " src" ,
28
- " dist"
29
- ],
30
- "scripts" : {
31
- "build" : " rm -rf dist/ && npm run build:esm && npm run build:cjs" ,
32
- "build:esm" : " tsc" ,
33
- "build:cjs" : " tsc --module CommonJS --outDir dist/cjs"
34
- },
24
+ "main" : " src/index.ts" ,
25
+ "module" : " src/index.ts" ,
35
26
"peerDependencies" : {
36
27
"@types/react" : " >=18.0.0" ,
37
28
"react" : " >=18.0.0" ,
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
3
- import { LoadingDotContextProvider } from "./components/ context" ;
4
- import { Container } from "./components/ Container" ;
5
- import { LoadingDotsProps } from "./types" ;
3
+ import { LoadingDotContextProvider } from "./context" ;
4
+ import { Container } from "./Container" ;
5
+ import { LoadingDotsProps } from ".. /types" ;
6
6
7
7
export function LoadingDots ( {
8
8
animation = "pulse" ,
Original file line number Diff line number Diff line change
1
+ export * from './components/LoadingDots' ;
2
+ export * from './types' ;
Original file line number Diff line number Diff line change 16
16
],
17
17
"module" : " es2015" ,
18
18
"moduleResolution" : " node" ,
19
- "noImplicitAny" : false ,
20
- "noUnusedLocals" : true ,
21
- "outDir" : " dist/esm" ,
22
- "sourceMap" : true ,
23
19
"strict" : true ,
24
20
"target" : " es6" ,
25
- "skipLibCheck" : true
26
21
},
27
22
"include" : [
28
23
" src/**/*.ts" ,
You can’t perform that action at this time.
0 commit comments