Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
refactor: migrate codebase to typescript
  • Loading branch information
satya164 committed May 4, 2019
1 parent 93470b4 commit e4c433a
Show file tree
Hide file tree
Showing 54 changed files with 8,256 additions and 1,710 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -7,7 +7,6 @@

# VSCode
.vscode/
tsconfig.json
jsconfig.json

# Xcode
Expand Down
9 changes: 5 additions & 4 deletions .release-it.json
@@ -1,8 +1,4 @@
{
"increment": "conventional:angular",
"scripts": {
"changelog": "conventional-changelog -p angular | tail -n +3"
},
"git": {
"commitMessage": "chore: release %s",
"tagName": "v%s"
Expand All @@ -12,5 +8,10 @@
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
2 changes: 1 addition & 1 deletion example/App.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Asset } from 'expo';
import { FlatList, I18nManager } from 'react-native';
import {
Expand Down
2 changes: 1 addition & 1 deletion example/src/FullScreen.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';

Expand Down
2 changes: 1 addition & 1 deletion example/src/GestureInteraction.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import {
ActivityIndicator,
Button,
Expand Down
2 changes: 1 addition & 1 deletion example/src/HeaderBackgrounds.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';

Expand Down
2 changes: 1 addition & 1 deletion example/src/ImageStack.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Dimensions, Button, Image, View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
import { FlatList, BorderlessButton } from 'react-native-gesture-handler';
Expand Down
2 changes: 1 addition & 1 deletion example/src/ImmediateTransition.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { StyleSheet, Text, TouchableOpacity, View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
import { createAppContainer } from '@react-navigation/native';
Expand Down
2 changes: 1 addition & 1 deletion example/src/LifecycleInteraction.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Button, Text, View, StyleSheet } from 'react-native';
import { BarCodeScanner } from 'expo';
import { withNavigationFocus } from '@react-navigation/core';
Expand Down
2 changes: 1 addition & 1 deletion example/src/ModalStack.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Button, View, Text } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';

Expand Down
2 changes: 1 addition & 1 deletion example/src/SimpleStack.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Dimensions, Button, View, Text } from 'react-native';
import { withNavigation } from '@react-navigation/core';
import { createStackNavigator } from 'react-navigation-stack';
Expand Down
2 changes: 1 addition & 1 deletion example/src/StackWithDrawer.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Button, Text, View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
import { createDrawerNavigator } from 'react-navigation-drawer';
Expand Down
2 changes: 1 addition & 1 deletion example/src/SwitchWithStacks.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import {
ActivityIndicator,
Button,
Expand Down
2 changes: 1 addition & 1 deletion example/src/TransparentStack.js
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { Animated, Button, Easing, View, Text } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';

Expand Down

0 comments on commit e4c433a

Please sign in to comment.