Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
Fix up example app.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterp committed Sep 5, 2020
1 parent 1df3b4e commit a2ae6fa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules/
.jsconfig.json
.DS_Store
package-lock.json
2 changes: 1 addition & 1 deletion examples/Demo_RN_v63_2/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react';

import { StyleSheet, TouchableOpacity, Text, View } from 'react-native';
import Tags from '../../Tags';
import Tags from 'react-native-tags';

class App extends Component {
constructor(props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
8 changes: 5 additions & 3 deletions examples/Demo_RN_v63_2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"start": "yarn postinstall && react-native start",
"test": "jest",
"lint": "eslint ."
"lint": "eslint .",
"postinstall": "cp -R ../../index.js ../../package.json ../../Tags node_modules/react-native-tags"
},
"dependencies": {
"react": "16.13.1",
"react-native": "0.63.2"
"react-native": "0.63.2",
"react-native-tags": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
Expand Down

0 comments on commit a2ae6fa

Please sign in to comment.