sybz-components 0.0.6 → 0.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sybz-components",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Vue3 中基于Element-plus二次封装基础组件文档",
5
5
  "private": false,
6
6
  "type": "module",
@@ -26,12 +26,13 @@
26
26
  "scripts": {
27
27
  "dev": "vitepress dev docs",
28
28
  "build": "vite build",
29
+ "docsbuild": "vitepress build docs",
30
+ "buildAll": "pnpm run -C packages/utils build --stub && pnpm build",
29
31
  "preview": "vite preview",
30
32
  "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
31
33
  "lint:prettier": "prettier --write --ignore-unknown --ignore-path .prettierignore \"*.{js,cjs,mjs,ts,cts,mts,json,jsonc,css,scss,vue,html,md,yml,yaml}\" \".vscode/**/*.{json,jsonc}\" \"{docs,packages,public,scripts,skills}/**/*.{js,cjs,mjs,ts,cts,mts,json,jsonc,tsx,jsx,css,scss,vue,html,md,yml,yaml}\"",
32
34
  "release": "pnpm build && npm version patch && npm publish",
33
35
  "format": "pnpm lint:prettier",
34
- "docsbuild": "vitepress build docs",
35
36
  "docsserve": "vitepress serve docs",
36
37
  "deploy": "sh -x deploy.sh",
37
38
  "release-deploy": "pnpm release && npm run deploy",