@skaldapp/configs 1.2.47 → 1.2.48
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/uno.config.d.ts +1 -1
- package/dist/uno.config.js +4 -1
- package/package.json +4 -2
package/dist/uno.config.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("unocss").
|
|
1
|
+
declare const _default: import("@unocss/vite").VitePluginConfig<object>;
|
|
2
2
|
export default _default;
|
package/dist/uno.config.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { extractorArbitraryVariants } from "@unocss/extractor-arbitrary-variants";
|
|
2
2
|
import extractorPug from "@unocss/extractor-pug";
|
|
3
|
-
import
|
|
3
|
+
import transformerCompileClass from "@unocss/transformer-compile-class";
|
|
4
|
+
import transformerDirectives from "@unocss/transformer-directives";
|
|
5
|
+
import transformerVariantGroup from "@unocss/transformer-variant-group";
|
|
6
|
+
import { defineConfig } from "@unocss/vite";
|
|
4
7
|
export default defineConfig({
|
|
5
8
|
extractors: [extractorPug(), extractorArbitraryVariants()],
|
|
6
9
|
transformers: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package",
|
|
3
3
|
"name": "@skaldapp/configs",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.48",
|
|
5
5
|
"description": "A comprehensive collection of shared configuration files for Vue.js projects with TypeScript, ESLint, Prettier, UnoCSS, and Vite, featuring Pug support",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"vue",
|
|
@@ -75,6 +75,9 @@
|
|
|
75
75
|
"@unocss/preset-typography": "^66.6.0",
|
|
76
76
|
"@unocss/preset-web-fonts": "^66.6.0",
|
|
77
77
|
"@unocss/preset-wind4": "^66.6.0",
|
|
78
|
+
"@unocss/transformer-compile-class": "^66.6.0",
|
|
79
|
+
"@unocss/transformer-directives": "^66.6.0",
|
|
80
|
+
"@unocss/transformer-variant-group": "^66.6.0",
|
|
78
81
|
"@unocss/vite": "^66.6.0",
|
|
79
82
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
80
83
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
@@ -101,7 +104,6 @@
|
|
|
101
104
|
"pug": "^3.0.3",
|
|
102
105
|
"tsc-alias": "^1.8.16",
|
|
103
106
|
"typescript": "^5.9.3",
|
|
104
|
-
"unocss": "^66.6.0",
|
|
105
107
|
"vite": "^7.3.1",
|
|
106
108
|
"vite-plugin-vue-devtools": "^8.0.5",
|
|
107
109
|
"vite-tsconfig-paths": "^6.0.4",
|