ai-front-base 0.1.2 → 0.1.4

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