ra-element 0.0.13 → 0.0.16
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 +2 -1
- package/package.json +74 -74
- /package/{dist → lib}/index.d.ts +0 -0
- /package/{dist → lib}/ra-button/index.vue.d.ts +0 -0
- /package/{dist → lib}/ra-date-picker/index.vue.d.ts +0 -0
- /package/{dist → lib}/ra-dialog/index.vue.d.ts +0 -0
- /package/{dist → lib}/ra-element.css +0 -0
- /package/{dist → lib}/ra-element.es.js +0 -0
- /package/{dist → lib}/ra-element.umd.js +0 -0
package/README.md
CHANGED
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
pnpm
|
|
11
11
|
|
|
12
12
|
## 发布流程
|
|
13
|
-
1、npm config set registry https://registry.npmjs.org
|
|
13
|
+
1、npm config set registry https://registry.npmjs.org (修改为发版包地址)
|
|
14
14
|
2、npm login
|
|
15
15
|
3、更新package.json中的版本号
|
|
16
16
|
4、npm publish
|
|
17
|
+
5、npm config set registry http://registry.npmmirror.com/ (还原下载包地址)
|
|
17
18
|
|
|
18
19
|
(发布后,引用项目使用镜像源安装不一定能立即下载到,就是官网下载可能都需要等一会才会有新版本)
|
|
19
20
|
|
package/package.json
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
2
|
+
"name": "ra-element",
|
|
3
|
+
"version": "0.0.16",
|
|
4
|
+
"author": "zhouhanwen",
|
|
5
|
+
"description": "基于 Vue3、Element Plus 的如安组件库",
|
|
6
|
+
"private": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "vite",
|
|
10
|
+
"build": "run-p type-check \"build-only {@}\" --",
|
|
11
|
+
"preview": "vite preview",
|
|
12
|
+
"build-only": "vite build",
|
|
13
|
+
"type-check": "vue-tsc --build",
|
|
14
|
+
"lint": "eslint . --fix",
|
|
15
|
+
"format": "prettier --write src/",
|
|
16
|
+
"prepare": "husky"
|
|
17
|
+
},
|
|
18
|
+
"main": "dist/ra-element.umd.cjs",
|
|
19
|
+
"module": "dist/ra-element.es.js",
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"lib",
|
|
23
|
+
"docs"
|
|
24
|
+
],
|
|
25
|
+
"lint-staged": {
|
|
26
|
+
"*.{ts,vue}": [
|
|
27
|
+
"npm run lint",
|
|
28
|
+
"prettier --write"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
33
|
+
"axios": "^1.10.0",
|
|
34
|
+
"element-plus": "^2.10.2",
|
|
35
|
+
"lodash-es": "^4.17.21",
|
|
36
|
+
"moment": "^2.30.1",
|
|
37
|
+
"pinia": "^3.0.3",
|
|
38
|
+
"qs": "^6.14.0",
|
|
39
|
+
"vue": "^3.5.17",
|
|
40
|
+
"vue-router": "^4.5.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@iconify-json/ep": "^1.2.2",
|
|
44
|
+
"@tsconfig/node22": "^22.0.2",
|
|
45
|
+
"@types/node": "^22.15.32",
|
|
46
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
47
|
+
"@vue/eslint-config-prettier": "^10.2.0",
|
|
48
|
+
"@vue/eslint-config-typescript": "^14.5.1",
|
|
49
|
+
"@vue/tsconfig": "^0.7.0",
|
|
50
|
+
"autoprefixer": "^10.4.21",
|
|
51
|
+
"doc-vue": "^2.0.2",
|
|
52
|
+
"eslint": "^9.29.0",
|
|
53
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
54
|
+
"eslint-plugin-vue": "~10.2.0",
|
|
55
|
+
"husky": "^9.1.7",
|
|
56
|
+
"jiti": "^2.4.2",
|
|
57
|
+
"lint-staged": "^16.1.2",
|
|
58
|
+
"npm-run-all2": "^8.0.4",
|
|
59
|
+
"postcss-px-to-viewport-8-plugin": "^1.2.5",
|
|
60
|
+
"prettier": "3.5.3",
|
|
61
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
62
|
+
"sass": "^1.89.2",
|
|
63
|
+
"typescript": "~5.8.0",
|
|
64
|
+
"unplugin-auto-import": "^19.3.0",
|
|
65
|
+
"unplugin-icons": "^22.1.0",
|
|
66
|
+
"unplugin-vue-components": "^28.8.0",
|
|
67
|
+
"vite": "^7.0.0",
|
|
68
|
+
"vite-plugin-compression": "^0.5.1",
|
|
69
|
+
"vite-plugin-dts": "^4.5.4",
|
|
70
|
+
"vite-plugin-imagemin": "^0.6.1",
|
|
71
|
+
"vite-plugin-style-to-vw": "^1.8.11",
|
|
72
|
+
"vite-plugin-vue-devtools": "^7.7.7",
|
|
73
|
+
"vue-tsc": "^2.2.10"
|
|
74
|
+
}
|
|
75
|
+
}
|
/package/{dist → lib}/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|