react-vant-nova 1.0.4 → 1.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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/package.json +16 -16
  3. package/LICENSE +0 -21
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <img alt="logo" src="https://cdn.jsdelivr.net/gh/3lang3/react-vant@main/public/logo.svg" width="200" style="margin-bottom: 10px;">
3
3
  </p>
4
4
 
5
- <h1 align="center">React Vant(此版本兼容 React 19)</h1>
5
+ <h1 align="center">React Vant Nova (此版本兼容 React 19)</h1>
6
6
 
7
7
  <p align="center">📱 A mobile component library based on the <strong>React</strong> framework according to <a href="https://github.com/youzan/vant">Vant</a>.</p>
8
8
 
@@ -90,10 +90,10 @@ ReactDOM.render(<App />, mountNode);
90
90
  - [Astro](https://github.com/3lang3/react-vant-template/tree/main/next/astro)
91
91
  - [Vite](https://github.com/3lang3/react-vant-template/tree/main/next/vite)
92
92
 
93
- For more information, please refer to [QuickStart](https://react-vant.3lang.dev/guide/quickstart).
93
+ For more information, please refer to [QuickStart](https://react-vant.fenewbee.com//guide/quickstart).
94
94
 
95
95
  ## 🤝 交流与支持
96
96
 
97
97
  - 反馈问题:[GitHub Issues](https://github.com/prayone/react-vant-nova/issues)
98
98
  - 开发交流:添加微信 wpp_rvn(备注「react-vant-nova」)
99
- - 文档地址:https://react-vant.3lang.dev/
99
+ - 文档地址:[https://react-vant.fenewbee.com//](https://react-vant.fenewbee.com/)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-vant-nova",
3
- "version": "1.0.4",
4
- "description": "React Mobile UI Components base on Vant UI (此版本兼容 React 19",
3
+ "version": "1.0.5",
4
+ "description": "基于 Vant UI 迭代维护的 React 移动端 UI 组件库(兼容 React 19+)",
5
5
  "keywords": [
6
6
  "ui",
7
7
  "react",
@@ -13,7 +13,7 @@
13
13
  "frontend",
14
14
  "react-component"
15
15
  ],
16
- "homepage": "https://react-vant.3lang.dev",
16
+ "homepage": "https://react-vant.fenewbee.com/",
17
17
  "repository": {
18
18
  "type": "git",
19
19
  "url": "暂无git地址,如有问题请联系作者wx: wpp_rvn",
@@ -57,6 +57,19 @@
57
57
  "module": "./es/index.js",
58
58
  "typings": "./es/index.d.ts",
59
59
  "style": "./bundle/index.css",
60
+ "scripts": {
61
+ "build": "rcdoc build && pnpm build:gulp",
62
+ "build:gulp": "gulp",
63
+ "deploy:gh-pages": "gh-pages -d docs-dist",
64
+ "dev": "rcdoc dev",
65
+ "docs:build": "rcdoc docs-build",
66
+ "lint": "eslint src --ext ts,tsx --fix",
67
+ "lint:tsx": "eslint src --ext ts,tsx",
68
+ "prettier": "npx prettier --write src",
69
+ "preview": "rcdoc preview",
70
+ "pub": "pnpm publish ./dist",
71
+ "pub:dev": "pnpm publish ./dist --tag dev"
72
+ },
60
73
  "browserslist": [
61
74
  "Android >= 4.0",
62
75
  "iOS >= 8"
@@ -79,18 +92,5 @@
79
92
  "publishConfig": {
80
93
  "access": "public",
81
94
  "registry": "https://registry.npmjs.org/"
82
- },
83
- "scripts": {
84
- "build": "rcdoc build && pnpm build:gulp",
85
- "build:gulp": "gulp",
86
- "deploy:gh-pages": "gh-pages -d docs-dist",
87
- "dev": "rcdoc dev",
88
- "docs:build": "rcdoc docs-build",
89
- "lint": "eslint src --ext ts,tsx --fix",
90
- "lint:tsx": "eslint src --ext ts,tsx",
91
- "prettier": "npx prettier --write src",
92
- "preview": "rcdoc preview",
93
- "pub": "pnpm publish ./dist",
94
- "pub:dev": "pnpm publish ./dist --tag dev"
95
95
  }
96
96
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 3lang
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.