ai-front-base 0.1.2 → 0.1.7
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/dist/README.md +4 -4
- package/package.json +3 -4
package/dist/README.md
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
### 开发前必读文档(按顺序)
|
|
8
8
|
|
|
9
|
-
1. **[前端规范](standards/README.md)** - 必读,了解命名、代码风格、Git规范
|
|
10
|
-
2. **[布局规则](layouts/README.md)** - 必读,确定业务系统遵守的布局规则
|
|
11
|
-
3. **[样式主题](styles/README.md)** - 必读,选择并配置主题
|
|
9
|
+
1. **[前端规范](src/standards/README.md)** - 必读,了解命名、代码风格、Git规范
|
|
10
|
+
2. **[布局规则](src/layouts/README.md)** - 必读,确定业务系统遵守的布局规则
|
|
11
|
+
3. **[样式主题](src/styles/README.md)** - 必读,选择并配置主题
|
|
12
12
|
|
|
13
13
|
### 按需阅读
|
|
14
14
|
|
|
15
|
-
4. **[组件库](components/README.md)** - 查看组件列表,按需查看各组件的types.ts了解用法
|
|
15
|
+
4. **[组件库](src/components/README.md)** - 查看组件列表,按需查看各组件的types.ts了解用法
|
|
16
16
|
|
|
17
17
|
### AI开发流程
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-front-base",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "企业级PC端AI组件库 - 基于Vue3和Element Plus",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"type": "module",
|
|
@@ -13,12 +13,11 @@
|
|
|
13
13
|
"./styles": "./styles/index.css"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist/*"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "vite build && node scripts/post-build.mjs",
|
|
20
|
-
"prepublishOnly": "pnpm build"
|
|
21
|
-
"publish": "npm publish --access public"
|
|
20
|
+
"prepublishOnly": "pnpm build"
|
|
22
21
|
},
|
|
23
22
|
"repository": {
|
|
24
23
|
"type": "git",
|