Skip to content

Commit

Permalink
fix: fixed library imports
Browse files Browse the repository at this point in the history
  • Loading branch information
moxorama committed Sep 23, 2024
1 parent d3cce25 commit fab5233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState, useEffect } from 'react';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import { AnimatedNumber } from 'react-native-reanimated-number';
import { AnimatedNumber } from '../../src/';

export default function App() {
const [number, setNumber] = useState(812);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "react-native-reanimated-numbers",
"version": "0.1.0",
"version": "0.5.0",
"description": "Library that animates changes in numbers",
"source": "./src/index.tsx",
"source": "./src/index.ts",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"exports": {
Expand Down

0 comments on commit fab5233

Please sign in to comment.