create-revo 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/test/README.md +0 -28
- package/test/eslint.config.js +0 -28
- package/test/index.html +0 -19
- package/test/package-lock.json +0 -4155
- package/test/package.json +0 -34
- package/test/postcss.config.js +0 -6
- package/test/public/favicon.ico +0 -0
- package/test/src/App.tsx +0 -34
- package/test/src/assets/revo.svg +0 -4
- package/test/src/components/dltme +0 -0
- package/test/src/index.css +0 -17
- package/test/src/main.tsx +0 -15
- package/test/src/vite-env.d.ts +0 -1
- package/test/tailwind.config.js +0 -11
- package/test/tsconfig.app.json +0 -24
- package/test/tsconfig.json +0 -7
- package/test/tsconfig.node.json +0 -24
- package/test/vite.config.ts +0 -10
- package/test2/README.md +0 -36
- package/test2/eslint.config.mjs +0 -25
- package/test2/next.config.ts +0 -8
- package/test2/package-lock.json +0 -6193
- package/test2/package.json +0 -29
- package/test2/postcss.config.mjs +0 -5
- package/test2/public/revo.svg +0 -4
- package/test2/src/app/components/dltme +0 -0
- package/test2/src/app/favicon.ico +0 -0
- package/test2/src/app/globals.css +0 -21
- package/test2/src/app/layout.tsx +0 -34
- package/test2/src/app/page.tsx +0 -32
- package/test2/tsconfig.json +0 -27
package/package.json
CHANGED
package/test/README.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# test
|
|
2
|
-
|
|
3
|
-
This is a React project bootstrapped with [`create-revo`](https://www.npmjs.com/package/create-revo).
|
|
4
|
-
|
|
5
|
-
## Getting Started
|
|
6
|
-
|
|
7
|
-
First, run the development server:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm run dev
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Open [http://localhost:5173](http://localhost:5173) with your browser to see the result.
|
|
14
|
-
|
|
15
|
-
## Features
|
|
16
|
-
|
|
17
|
-
- ⚡ Vite for fast development
|
|
18
|
-
- ⚛️ React 18 with TypeScript
|
|
19
|
-
- 🎨 Tailwind CSS for styling
|
|
20
|
-
- 🔧 ESLint for code quality
|
|
21
|
-
- 🚀 Motion for animations
|
|
22
|
-
|
|
23
|
-
## Learn More
|
|
24
|
-
|
|
25
|
-
To learn more about React, take a look at the following resources:
|
|
26
|
-
|
|
27
|
-
- [React Documentation](https://react.dev) - learn about React features and API.
|
|
28
|
-
- [Vite Documentation](https://vitejs.dev) - learn about Vite features and configuration.
|
package/test/eslint.config.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import js from '@eslint/js'
|
|
2
|
-
import globals from 'globals'
|
|
3
|
-
import reactHooks from 'eslint-plugin-react-hooks'
|
|
4
|
-
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
5
|
-
import tseslint from 'typescript-eslint'
|
|
6
|
-
|
|
7
|
-
export default tseslint.config(
|
|
8
|
-
{ ignores: ['dist'] },
|
|
9
|
-
{
|
|
10
|
-
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
|
11
|
-
files: ['**/*.{ts,tsx}'],
|
|
12
|
-
languageOptions: {
|
|
13
|
-
ecmaVersion: 2020,
|
|
14
|
-
globals: globals.browser,
|
|
15
|
-
},
|
|
16
|
-
plugins: {
|
|
17
|
-
'react-hooks': reactHooks,
|
|
18
|
-
'react-refresh': reactRefresh,
|
|
19
|
-
},
|
|
20
|
-
rules: {
|
|
21
|
-
...reactHooks.configs.recommended.rules,
|
|
22
|
-
'react-refresh/only-export-components': [
|
|
23
|
-
'warn',
|
|
24
|
-
{ allowConstantExport: true },
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
)
|
package/test/index.html
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<title>revo</title>
|
|
8
|
-
<meta name="author" content="Tarun Gupta" />
|
|
9
|
-
<!-- <meta name="keywords" content="" /> -->
|
|
10
|
-
<!-- <meta name="description" content=""/> -->
|
|
11
|
-
<!-- <meta property="og:image" content="" /> -->
|
|
12
|
-
<!-- <meta property="og:title" content="" /> -->
|
|
13
|
-
<!-- <meta property="og:description" content="" /> -->
|
|
14
|
-
</head>
|
|
15
|
-
<body>
|
|
16
|
-
<div id="root"></div>
|
|
17
|
-
<script type="module" src="/src/main.tsx"></script>
|
|
18
|
-
</body>
|
|
19
|
-
</html>
|