@solidxai/solidctl 0.1.42-beta.4 → 0.1.43-beta.0
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/commands/create-app/create-app.command.js +55 -15
- package/dist/commands/create-app/create-app.command.js.map +1 -1
- package/dist/commands/create-app/helpers.d.ts +2 -0
- package/dist/commands/create-app/helpers.js +2 -0
- package/dist/commands/create-app/helpers.js.map +1 -1
- package/dist/commands/create-app/setup-questions.d.ts +30 -0
- package/dist/commands/create-app/setup-questions.js +21 -1
- package/dist/commands/create-app/setup-questions.js.map +1 -1
- package/dist/commands/seed.command.js +22 -1
- package/dist/commands/seed.command.js.map +1 -1
- package/dist/commands/start.command.js +37 -0
- package/dist/commands/start.command.js.map +1 -1
- package/dist/db/embedded.d.ts +28 -0
- package/dist/db/embedded.js +153 -0
- package/dist/db/embedded.js.map +1 -0
- package/dist/db/pglite-server.d.ts +1 -0
- package/dist/db/pglite-server.js +42 -0
- package/dist/db/pglite-server.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/templates/ui-template/package.json +4 -4
- package/templates/ui-template/postcss.config.js +6 -0
- package/templates/ui-template/src/index.css +4 -0
- package/templates/ui-template/tailwind.config.js +27 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidxai/solidctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.43-beta.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "",
|
|
6
6
|
"private": false,
|
|
@@ -41,6 +41,8 @@
|
|
|
41
41
|
"release:alpha:major": "npx ts-node src/main.ts release major --preid=alpha"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
+
"@electric-sql/pglite": "^0.5.3",
|
|
45
|
+
"@electric-sql/pglite-socket": "^0.2.4",
|
|
44
46
|
"@nestjs/common": "^11.0.1",
|
|
45
47
|
"@nestjs/core": "^11.0.1",
|
|
46
48
|
"@nestjs/platform-express": "^11.0.1",
|
|
@@ -50,10 +52,10 @@
|
|
|
50
52
|
"dotenv": "^17.4.2",
|
|
51
53
|
"fs-extra": "^11.3.2",
|
|
52
54
|
"inquirer": "^8.2.7",
|
|
55
|
+
"lodash": "^4.17.21",
|
|
53
56
|
"mssql": "^12.2.3",
|
|
54
57
|
"mysql2": "^3.22.0",
|
|
55
58
|
"ora": "^5.4.1",
|
|
56
|
-
"lodash": "^4.17.21",
|
|
57
59
|
"pg": "^8.20.0",
|
|
58
60
|
"reflect-metadata": "^0.2.2",
|
|
59
61
|
"rxjs": "^7.8.1"
|
|
@@ -68,9 +70,9 @@
|
|
|
68
70
|
"@types/fs-extra": "^11.0.4",
|
|
69
71
|
"@types/inquirer": "^8.2.12",
|
|
70
72
|
"@types/jest": "^30.0.0",
|
|
73
|
+
"@types/lodash": "^4.17.0",
|
|
71
74
|
"@types/mssql": "^12.3.0",
|
|
72
75
|
"@types/node": "^22.10.7",
|
|
73
|
-
"@types/lodash": "^4.17.0",
|
|
74
76
|
"@types/pg": "^8.20.0",
|
|
75
77
|
"@types/supertest": "^6.0.2",
|
|
76
78
|
"eslint": "^9.18.0",
|
|
@@ -16,9 +16,6 @@
|
|
|
16
16
|
"@reduxjs/toolkit": "^1.9.7",
|
|
17
17
|
"@solidxai/core-ui": "^0.1.0",
|
|
18
18
|
"axios": "^1.13.2",
|
|
19
|
-
"primeflex": "^4.0.0",
|
|
20
|
-
"primeicons": "^7.0.0",
|
|
21
|
-
"primereact": "^10.9.7",
|
|
22
19
|
"react": "18.2.0",
|
|
23
20
|
"react-dom": "18.2.0",
|
|
24
21
|
"react-redux": "^8.1.2",
|
|
@@ -35,12 +32,15 @@
|
|
|
35
32
|
"@types/react": "18.2.45",
|
|
36
33
|
"@types/react-dom": "18.2.18",
|
|
37
34
|
"@vitejs/plugin-react": "^5.1.1",
|
|
35
|
+
"autoprefixer": "^10.4.21",
|
|
38
36
|
"eslint": "^9.39.1",
|
|
39
37
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
40
38
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
41
39
|
"globals": "^16.5.0",
|
|
40
|
+
"postcss": "^8.5.6",
|
|
41
|
+
"tailwindcss": "^3.4.19",
|
|
42
42
|
"typescript": "~5.9.3",
|
|
43
43
|
"typescript-eslint": "8.59.1",
|
|
44
44
|
"vite": "^7.2.4"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/** @type {import('tailwindcss').Config} */
|
|
2
|
+
export default {
|
|
3
|
+
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
4
|
+
corePlugins: {
|
|
5
|
+
preflight: false,
|
|
6
|
+
},
|
|
7
|
+
theme: {
|
|
8
|
+
extend: {
|
|
9
|
+
colors: {
|
|
10
|
+
background: "var(--background,var(--surface-0))",
|
|
11
|
+
border: "var(--border,var(--surface-border))",
|
|
12
|
+
card: "var(--card,var(--surface-card,var(--surface-0)))",
|
|
13
|
+
foreground: "var(--foreground,var(--text-color))",
|
|
14
|
+
muted: "var(--muted,var(--surface-500))",
|
|
15
|
+
"muted-foreground": "var(--muted-foreground,var(--text-color-secondary))",
|
|
16
|
+
primary: "var(--primary-color,var(--primary))",
|
|
17
|
+
},
|
|
18
|
+
screens: {
|
|
19
|
+
sm: "576px",
|
|
20
|
+
md: "768px",
|
|
21
|
+
lg: "992px",
|
|
22
|
+
xl: "1200px",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
plugins: [],
|
|
27
|
+
};
|