aaex-cli 2.0.1 → 2.0.2

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.
@@ -68,7 +68,7 @@ async function createPackageJson() {
68
68
  mongodb: "^7.0.0",
69
69
  bcrypt: "^6.0.0",
70
70
  dotenv: "^17.2.3",
71
- "aaexjs": "^2.0.0"
71
+ "aaexjs": "^2.0.2"
72
72
  },
73
73
  devDependencies: {
74
74
  typescript: "~5.9.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aaex-cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Command line interface for creating aaexjs app",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -36,6 +36,6 @@
36
36
  "inquirer": "^13.1.0"
37
37
  },
38
38
  "peerDependencies": {
39
- "aaexjs": "2.0.1"
39
+ "aaexjs": "^2.0.1"
40
40
  }
41
41
  }
@@ -1,9 +1,9 @@
1
1
  import { defineConfig } from "vite";
2
2
  import react from "@vitejs/plugin-react";
3
3
  import { aaexServerRouter } from "aaex-file-router/plugin";
4
- import { pluginSsrDevFoucFix } from "aaexjs-test";
4
+ import { SSRCss } from "aaexjs";
5
5
 
6
6
  // https://vite.dev/config/
7
7
  export default defineConfig({
8
- plugins: [react(), aaexServerRouter(), pluginSsrDevFoucFix()],
8
+ plugins: [react(), aaexServerRouter(), SSRCss()],
9
9
  });