@aerogel/cli 0.0.0-next.376abe09458ebc4a94f0b6976e252532628ea62a → 0.0.0-next.3bb1526f6fa3bf8ea9de5f1722c88e5f02ce71e0
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 +1 -1
- package/templates/app/index.html +2 -2
- package/templates/app/package.json +4 -3
- package/templates/app/src/App.vue +1 -1
- package/templates/app/src/assets/css/main.css +4 -3
- package/templates/app/postcss.config.js +0 -6
- package/templates/app/tailwind.config.js +0 -5
- package/templates/postcss-pseudo-classes/postcss.config.js +0 -15
package/package.json
CHANGED
package/templates/app/index.html
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html lang="en" class="
|
|
2
|
+
<html lang="en" class="size-full">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>{{ app.name }}</title>
|
|
7
7
|
{{ socialMeta() }}
|
|
8
8
|
</head>
|
|
9
|
-
<body class="
|
|
9
|
+
<body class="size-full text-base font-normal leading-tight text-gray-900 antialiased">
|
|
10
10
|
<div id="app" class="loading h-full"></div>
|
|
11
11
|
<script type="module" src="./src/main.ts"></script>
|
|
12
12
|
</body>
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"@aerogel/plugin-soukai": "<% &dependencies.aerogelPluginSoukai %>",
|
|
24
24
|
"@intlify/unplugin-vue-i18n": "^0.12.2",
|
|
25
25
|
"@noeldemartin/utils": "next",
|
|
26
|
-
"@tailwindcss/forms": "^0.5.
|
|
27
|
-
"@tailwindcss/typography": "^0.5.
|
|
26
|
+
"@tailwindcss/forms": "^0.5.10",
|
|
27
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
28
28
|
"soukai": "next",
|
|
29
|
-
"tailwindcss": "^
|
|
29
|
+
"tailwindcss": "^4.1.1",
|
|
30
30
|
"vue": "^3.3.0",
|
|
31
31
|
"vue-i18n": "9.3.0-beta.19"
|
|
32
32
|
},
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"autoprefixer": "^10.4.14",
|
|
45
45
|
"concurrently": "^8.2.0",
|
|
46
46
|
"cypress": "^14.2.0",
|
|
47
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
47
48
|
"start-server-and-test": "^2.0.0",
|
|
48
49
|
"typescript": "^5.8.2",
|
|
49
50
|
"unplugin-icons": "^0.16.3",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
1
|
+
@import 'tailwindcss';
|
|
2
|
+
@plugin '@tailwindcss/forms';
|
|
3
|
+
@plugin '@tailwindcss/typography';
|
|
4
|
+
@source '../../../node_modules/@aerogel/core';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
const plugins = {
|
|
2
|
-
tailwindcss: {},
|
|
3
|
-
autoprefixer: {},
|
|
4
|
-
};
|
|
5
|
-
|
|
6
|
-
if (process.env.NODE_ENV === 'development') {
|
|
7
|
-
plugins['postcss-pseudo-classes'] = {
|
|
8
|
-
blacklist: [],
|
|
9
|
-
restrictTo: ['focus', 'focus-visible', 'focus-within', 'hover'],
|
|
10
|
-
allCombinations: true,
|
|
11
|
-
preserveBeforeAfter: false,
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
module.exports = { plugins };
|