dpzvc3-ui 3.2.0 → 3.2.1

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/README.md +2 -1
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -5,7 +5,8 @@
5
5
  > 一套基于 **Vue 3.X** 的h5移动端通用组件库,提供丰富 UI 组件,兼容最新Vue3.x + Typescript Cli项目(可以在Vue3.x + Typescript Cli项目直接引用组件并使用)使用最新的Vite构建,并支持 组件以及CSS样式**全量引入** 和 **按需引入**,同时提供公共样式、基础工具样式和服务组件方法(如 Message、Modal、Indicator)。会一直不断完善体验,使用过程有问题欢迎在https://github.com/yishide/dpzvc3/issues提交bug,看到了会及时修复!!!
6
6
 
7
7
  ---
8
-
8
+ // "start": "node server.js",
9
+ // "vercel-build": "npm run build:ssr"
9
10
  ## 二、组件库预览地址(查看各个组件库的使用效果)
10
11
  ```bash
11
12
  https://yishide.github.io/dpzvc3/#/guide
package/package.json CHANGED
@@ -1,24 +1,25 @@
1
1
  {
2
2
  "name": "dpzvc3-ui",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Vue3组件库,基于Vue3+Vite+TypeScript开发,提供丰富的移动端UI组件。",
5
5
  "main": "dist/dpzvc3-ui.cjs.js",
6
6
  "module": "dist/dpzvc3-ui.es.js",
7
7
  "browser": "dist/dpzvc3-ui.umd.js",
8
8
  "types": "dist/types/index.d.ts",
9
9
  "scripts": {
10
- "dev:vite": "vite",
10
+ "fix": "eslint src --fix",
11
+ "dev": "vite",
11
12
  "type-check": "vue-tsc --noEmit",
12
13
  "type-check:watch": "vue-tsc --noEmit --watch",
13
- "build": "npm run build:style && VITE_MINIFY=false vite build --config vite.config.lib.ts && VITE_MINIFY=true vite build --config vite.config.lib.ts && npm run build:types",
14
+ "build:package": "npm run build:style && VITE_MINIFY=false vite build --config vite.config.lib.ts && VITE_MINIFY=true vite build --config vite.config.lib.ts && npm run build:types",
14
15
  "dist": "vite build --mode production",
15
16
  "preview": "vite preview --outDir dist-prod",
16
- "build:ssr": "vite build --config vite.config.ssr.client.ts && vite build --config vite.config.ssr.server.ts",
17
+ "build": "vite build --config vite.config.ssr.client.ts && vite build --config vite.config.ssr.server.ts",
17
18
  "build:style": "gulp --gulpfile build-style.js",
18
19
  "build:types": "tsc --project tsconfig.build.json && cp src/index.d.ts dist/types/index.d.ts",
19
20
  "prepare": "husky",
20
21
  "start": "node server.js",
21
- "vercel-build": "npm run build:ssr"
22
+ "vercel-build": "npm run build"
22
23
  },
23
24
  "repository": {
24
25
  "type": "git",