Skip to content

Commit 7b800cc

Browse files
committed
📖 Docs
1 parent c4c1030 commit 7b800cc

19 files changed

+6340
-533
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,14 @@ Run the example app on Android:
125125
126126
git commit -m "your-msg" --no-verify
127127
128+
Publish
129+
130+
$ yarn publish --network-timeout 600000
131+
132+
If does not work
133+
134+
$ rm -rf node_modules
135+
$ npm install
136+
$ npm publish
137+
128138
-->

docs/package-lock.json

+6,294
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "react-native-csv-docs",
2+
"name": "react-papaparse-docs",
33
"version": "3.11.0",
4-
"description": "react-native-csv-docs docs.",
4+
"description": "react-papaparse docs.",
55
"main": "index.js",
66
"scripts": {
77
"prettier": "prettier --write './pages/*.js' './src/*/*/*.js' './src/*/*/*/*.js' --config ../.prettierrc",

docs/pages/_app.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class CustomApp extends App {
2323
let title = '';
2424
if (pageName === '') {
2525
title = 'react-native-csv';
26-
} else if (pageName === 'demo') {
27-
title = 'Demo';
2826
} else if (pageName === 'docs') {
2927
title = 'Documentation';
3028
}
@@ -131,22 +129,21 @@ class CustomApp extends App {
131129
react-native-csv by{' '}
132130
<a href="https://github.com/bunlong">Bunlong</a>
133131
<br />
134-
&copy; 2018-2020
132+
&copy; 2021
135133
</div>
136134

137135
<div className="grid-15 mobile-grid-50 links">
138136
<h5>Learn</h5>
139-
<a href="/demo">Demo</a>
140137
<a href="/docs">Documentation</a>
141138
</div>
142139

143140
<div className="grid-15 mobile-grid-50 links">
144141
<h5>Project</h5>
145142
<a
146-
href="https://github.com/Bunlong/react-native-csv"
143+
href="https://github.com/Bunlong/react-papaparse"
147144
target="_blank"
148145
>
149-
react-native-csv
146+
react-papaparse
150147
</a>
151148
</div>
152149
</div>

docs/pages/demo.js

-17
This file was deleted.

docs/pages/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ const Index = () => {
2424
<main>
2525
<Navbar />
2626
<Feature />
27-
<Framework />
27+
{/* <Framework /> */}
2828
<Love />
2929
<CSVParsing />
3030
<Delimiter />
31-
<LocalFile />
31+
{/* <LocalFile /> */}
3232
<RemoteFile />
3333
<Stream />
3434
<Worker />

0 commit comments

Comments
 (0)