Skip to content

Commit eeda5e6

Browse files
committed
Added new gitignore, gitattribute and npmignore files
1 parent af6dd9f commit eeda5e6

5 files changed

Lines changed: 16 additions & 6 deletions

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

.gitignore

100755100644
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
#
33
.DS_Store
44

5+
package-lock.json
6+
7+
node_modules
8+
59
# Xcode
610
#
711
build/
@@ -29,8 +33,6 @@ build/
2933
.gradle
3034
local.properties
3135
*.iml
32-
andro/
33-
*.class
3436

3537
# node.js
3638
#

.npmignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Node Modules
2+
**/node_modules
3+
node_modules
4+
# Example
5+
example
6+
# Assets
7+
Assets
8+
assets

example/App.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React, { Fragment } from "react";
2-
import { StatusBar, SafeAreaView, TouchableOpacity } from "react-native";
3-
import { ClassicHeader, ModernHeader } from "./lib/src/index";
4-
import Icon from "react-native-dynamic-vector-icons";
2+
import { StatusBar, SafeAreaView } from "react-native";
3+
import { ClassicHeader, ModernHeader } from "react-native-header-view";
54

65
const App = () => {
76
return (

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@freakycoder/react-native-header-view",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Fully customizable Header View for React Native.",
55
"keywords": [
66
"react-native",

0 commit comments

Comments
 (0)