@fchc8/vite-plugin-multi-page 1.0.0 → 1.0.2
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/README.md +5 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
## 📦 安装
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install vite-plugin-multi-page
|
|
20
|
+
npm install @fchc8/vite-plugin-multi-page
|
|
21
21
|
# 或
|
|
22
|
-
yarn add vite-plugin-multi-page
|
|
22
|
+
yarn add @fchc8/vite-plugin-multi-page
|
|
23
23
|
# 或
|
|
24
|
-
pnpm add vite-plugin-multi-page
|
|
24
|
+
pnpm add @fchc8/vite-plugin-multi-page
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## 🚀 快速开始
|
|
@@ -31,7 +31,7 @@ pnpm add vite-plugin-multi-page
|
|
|
31
31
|
```typescript
|
|
32
32
|
// vite.config.ts
|
|
33
33
|
import { defineConfig } from 'vite';
|
|
34
|
-
import viteMultiPage from 'vite-plugin-multi-page';
|
|
34
|
+
import viteMultiPage from '@fchc8/vite-plugin-multi-page';
|
|
35
35
|
|
|
36
36
|
export default defineConfig({
|
|
37
37
|
plugins: [
|
|
@@ -68,7 +68,7 @@ project/
|
|
|
68
68
|
|
|
69
69
|
```typescript
|
|
70
70
|
import { defineConfig } from 'vite';
|
|
71
|
-
import viteMultiPage from 'vite-plugin-multi-page';
|
|
71
|
+
import viteMultiPage from '@fchc8/vite-plugin-multi-page';
|
|
72
72
|
|
|
73
73
|
export default defineConfig({
|
|
74
74
|
plugins: [
|
|
@@ -475,19 +475,10 @@ git tag v1.1.0
|
|
|
475
475
|
git push origin v1.1.0
|
|
476
476
|
```
|
|
477
477
|
|
|
478
|
-
## 📚 文档
|
|
479
|
-
|
|
480
|
-
- 📋 [发布指南](./RELEASE.md) - 完整的发布流程说明
|
|
481
|
-
- 🤝 [贡献指南](./CONTRIBUTING.md) - 如何为项目做贡献
|
|
482
|
-
- 📝 [变更日志](./CHANGELOG.md) - 版本变更记录
|
|
483
|
-
- ✅ [检查清单](./CHECKLIST.md) - 发布前检查清单
|
|
484
|
-
|
|
485
478
|
## 🤝 贡献
|
|
486
479
|
|
|
487
480
|
欢迎提交 Issue 和 Pull Request!
|
|
488
481
|
|
|
489
|
-
请阅读我们的 [贡献指南](./CONTRIBUTING.md) 了解详细的开发流程和代码规范。
|
|
490
|
-
|
|
491
482
|
## 📄 许可证
|
|
492
483
|
|
|
493
484
|
MIT License
|
package/package.json
CHANGED