Skip to content

Commit c29f2d5

Browse files
authoredOct 7, 2023
Upgrade dependencies (#96)
2 parents df61ae9 + 29305eb commit c29f2d5

28 files changed

+283
-685
lines changed
 

‎CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 4.2.0 (2023-10-07)
2+
3+
### ✨ Features
4+
5+
* Upgrade dependencies
6+
7+
Credits
8+
9+
* [@Bunlong](https://github.com/Bunlong)
10+
111
## 4.1.0 (2022-08-07)
212

313
### ✨ Bugs

‎README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,10 @@ readRemoteFile(url, {
886886

887887
## 📜 Changelog
888888

889+
Latest version 4.2.0 (2023-10-07):
890+
891+
* Upgrade dependencies
892+
889893
Latest version 4.1.0 (2022-08-07):
890894

891895
* Import readString, readRemoteFile and jsonToCSV as pure function
@@ -911,7 +915,7 @@ Details changes for each release are documented in the [CHANGELOG.md](https://gi
911915

912916
## 🛣️ Roadmap
913917

914-
### 🆕 v4.1.x
918+
### 🆕 v4.4.x
915919

916920
* CSVReader multiple files drag and drop
917921

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-papaparse",
3-
"version": "4.1.0",
3+
"version": "4.2.0",
44
"description": "The fastest in-browser CSV (or delimited text) parser for React. It is full of useful features such as CSVReader, CSVDownloader, readString, jsonToCSV, readRemoteFile, ... etc.",
55
"author": "Bunlong <bunlong.van@gmail.com>",
66
"license": "MIT",
@@ -99,7 +99,7 @@
9999
"react-test-renderer": "^17.0.2",
100100
"rollup": "^2.56.3",
101101
"rollup-plugin-terser": "^7.0.2",
102-
"rollup-plugin-typescript2": "^0.30.0",
102+
"rollup-plugin-typescript2": "^0.35.0",
103103
"ts-jest": "^27.0.5",
104104
"tslib": "^2.3.1",
105105
"typescript": "^4.4.2"
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

‎supports/create-next-app/README.md

+3-24
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,13 @@
1-
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2-
3-
## Getting Started
1+
## Create Next App
42

53
First, run the development server:
64

75
```bash
86
npm run dev
97
# or
108
yarn dev
9+
# or
10+
pnpm dev
1111
```
1212

1313
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14-
15-
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16-
17-
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
18-
19-
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20-
21-
## Learn More
22-
23-
To learn more about Next.js, take a look at the following resources:
24-
25-
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27-
28-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29-
30-
## Deploy on Vercel
31-
32-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33-
34-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

‎supports/create-next-app/next-env.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// <reference types="next" />
2-
/// <reference types="next/types/global" />
32
/// <reference types="next/image-types/global" />
43

54
// NOTE: This file should not be edited
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {}
3+
4+
module.exports = nextConfig

‎supports/create-next-app/package.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"name": "react-papaparse",
2+
"name": "create-next-app",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
8-
"start": "next start"
8+
"start": "next start",
9+
"lint": "next lint"
910
},
1011
"dependencies": {
11-
"next": "11.1.0",
12-
"react": "17.0.2",
13-
"react-dom": "17.0.2",
14-
"react-papaparse": "file:../.."
15-
},
16-
"devDependencies": {
17-
"@types/react": "17.0.19",
18-
"typescript": "4.4.2"
12+
"@types/node": "20.4.5",
13+
"@types/react": "18.2.17",
14+
"@types/react-dom": "18.2.7",
15+
"eslint": "8.45.0",
16+
"eslint-config-next": "13.4.12",
17+
"next": "13.4.12",
18+
"react": "18.2.0",
19+
"react-dom": "18.2.0",
20+
"react-papaparse": "file:../..",
21+
"typescript": "5.1.6"
1922
}
2023
}

‎supports/create-next-app/pages/_app.tsx

-7
This file was deleted.

‎supports/create-next-app/pages/api/hello.ts

-10
This file was deleted.

‎supports/create-next-app/pages/index.tsx

-158
This file was deleted.
-14.7 KB
Binary file not shown.
+1
Loading
+1-4
Loading
25.3 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Metadata } from 'next'
2+
import { Inter } from 'next/font/google'
3+
4+
const inter = Inter({ subsets: ['latin'] })
5+
6+
export const metadata: Metadata = {
7+
title: 'Create Next App',
8+
description: 'Generated by create next app',
9+
}
10+
11+
export default function RootLayout({
12+
children,
13+
}: {
14+
children: React.ReactNode
15+
}) {
16+
return (
17+
<html lang="en">
18+
<body className={inter.className}>{children}</body>
19+
</html>
20+
)
21+
}

0 commit comments

Comments
 (0)