@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aerogel/cli",
3
- "version": "0.0.0-next.376abe09458ebc4a94f0b6976e252532628ea62a",
3
+ "version": "0.0.0-next.3bb1526f6fa3bf8ea9de5f1722c88e5f02ce71e0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -1,12 +1,12 @@
1
1
  <!DOCTYPE html>
2
- <html lang="en" class="h-full w-full">
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="h-full w-full text-base font-normal leading-tight text-gray-900 antialiased">
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.3",
27
- "@tailwindcss/typography": "^0.5.9",
26
+ "@tailwindcss/forms": "^0.5.10",
27
+ "@tailwindcss/typography": "^0.5.16",
28
28
  "soukai": "next",
29
- "tailwindcss": "^3.3.2",
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,6 +1,6 @@
1
1
  <template>
2
2
  <AGAppLayout class="bg-blue-50">
3
- <main class="flex flex-grow flex-col items-center justify-center">
3
+ <main class="flex grow flex-col items-center justify-center">
4
4
  <h1 class="text-4xl font-semibold">
5
5
  {{ $t('home.title') }}
6
6
  </h1>
@@ -1,3 +1,4 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
1
+ @import 'tailwindcss';
2
+ @plugin '@tailwindcss/forms';
3
+ @plugin '@tailwindcss/typography';
4
+ @source '../../../node_modules/@aerogel/core';
@@ -1,6 +0,0 @@
1
- export default {
2
- plugins: {
3
- tailwindcss: {},
4
- autoprefixer: {},
5
- },
6
- };
@@ -1,5 +0,0 @@
1
- /** @type {import('tailwindcss').Config} */
2
- module.exports = {
3
- content: ['./index.html', './src/**/*.{vue,ts}', '<% &contentPath %>'],
4
- plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
5
- };
@@ -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 };