@quiteer/vite 0.1.4 → 0.1.6
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/bin/qvite.mjs +1 -1
- package/package.json +4 -3
- package/uno.config.ts +1 -0
package/dist/bin/qvite.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quiteer/vite",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"description": "在 vite 的基础上增强的前端架构 cli",
|
|
6
6
|
"author": "quiteer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"client.d.ts",
|
|
42
|
-
"dist"
|
|
42
|
+
"dist",
|
|
43
|
+
"uno.config.ts"
|
|
43
44
|
],
|
|
44
45
|
"publishConfig": {
|
|
45
46
|
"access": "public",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"@quiteer/is": "0.0.2",
|
|
62
63
|
"@quiteer/utils": "0.0.2",
|
|
63
64
|
"@quiteer/vite-plugins": "^0.1.2",
|
|
64
|
-
"@quiteer/unocss": "0.0.
|
|
65
|
+
"@quiteer/unocss": "0.0.3"
|
|
65
66
|
},
|
|
66
67
|
"scripts": {
|
|
67
68
|
"dev": "tsdown -w",
|
package/uno.config.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { defineConfig, unoConfig } from '@quiteer/unocss/uno.config.ts'
|