@idealyst/cli 1.0.35 → 1.0.36

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": "@idealyst/cli",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "CLI tool for generating Idealyst Framework projects",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -9,6 +9,9 @@ RUN apt-get update && apt-get install -y \
9
9
  # Enable corepack for yarn
10
10
  RUN corepack enable
11
11
 
12
+ # Create workspace directory
13
+ RUN mkdir -p /workspace
14
+
12
15
  # Set working directory
13
16
  WORKDIR /workspace
14
17
 
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "Idealyst Development",
3
+ "dockerComposeFile": "docker-compose.yml",
4
+ "service": "app",
5
+ "workspaceFolder": "/workspace",
6
+
7
+ // Forward ports
8
+ "forwardPorts": [
9
+ 3000, // Web dev server
10
+ 3001, // API server
11
+ 5173, // Vite dev server
12
+ 8080, // Additional dev server
13
+ 19006, // Expo dev tools
14
+ 5432, // PostgreSQL
15
+ 6379 // Redis
16
+ ],
17
+
18
+ // Port attributes
19
+ "portsAttributes": {
20
+ "3000": {
21
+ "label": "Web App",
22
+ "onAutoForward": "openBrowser"
23
+ },
24
+ "3001": {
25
+ "label": "API Server",
26
+ "onAutoForward": "notify"
27
+ },
28
+ "5173": {
29
+ "label": "Vite Dev Server",
30
+ "onAutoForward": "openBrowser"
31
+ },
32
+ "8080": {
33
+ "label": "Additional Dev Server",
34
+ "onAutoForward": "notify"
35
+ },
36
+ "19006": {
37
+ "label": "Expo Dev Tools",
38
+ "onAutoForward": "openBrowser"
39
+ },
40
+ "5432": {
41
+ "label": "PostgreSQL Database",
42
+ "onAutoForward": "silent"
43
+ },
44
+ "6379": {
45
+ "label": "Redis Cache",
46
+ "onAutoForward": "silent"
47
+ }
48
+ },
49
+
50
+ // VS Code customizations
51
+ "customizations": {
52
+ "vscode": {
53
+ "extensions": [
54
+ // React Native/React development
55
+ "ms-vscode.vscode-react-native",
56
+ "msjsdiag.vscode-react-native",
57
+
58
+ // TypeScript/JavaScript
59
+ "ms-vscode.vscode-typescript-next",
60
+ "dbaeumer.vscode-eslint",
61
+ "esbenp.prettier-vscode",
62
+ "bradlc.vscode-tailwindcss",
63
+
64
+ // General development
65
+ "ms-vscode.vscode-json",
66
+ "redhat.vscode-yaml",
67
+ "ms-vscode.vscode-docker",
68
+ "ms-vscode.vscode-markdown",
69
+ "christian-kohler.path-intellisense",
70
+ "formulahendry.auto-rename-tag",
71
+
72
+ // Testing
73
+ "orta.vscode-jest",
74
+ "ms-vscode.test-adapter-converter",
75
+
76
+ // Git
77
+ "mhutchie.git-graph",
78
+ "eamodio.gitlens",
79
+ "github.vscode-pull-request-github",
80
+ "github.copilot",
81
+ "github.copilot-chat"
82
+ ],
83
+ "settings": {
84
+ "terminal.integrated.defaultProfile.linux": "bash",
85
+ "typescript.preferences.includePackageJsonAutoImports": "auto",
86
+ "editor.formatOnSave": true,
87
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
88
+ "editor.codeActionsOnSave": {
89
+ "source.fixAll.eslint": "explicit",
90
+ "source.organizeImports": "explicit"
91
+ },
92
+ "files.watcherExclude": {
93
+ "**/node_modules/**": true,
94
+ "**/.git/**": true,
95
+ "**/dist/**": true,
96
+ "**/coverage/**": true
97
+ },
98
+ "search.exclude": {
99
+ "**/node_modules": true,
100
+ "**/dist": true,
101
+ "**/coverage": true,
102
+ "**/.yarn": true
103
+ },
104
+ "jest.jestCommandLine": "yarn test",
105
+ "jest.autoRun": "off"
106
+ }
107
+ }
108
+ },
109
+
110
+ // Post-create command to set up the development environment
111
+ "postCreateCommand": "bash .devcontainer/setup.sh"
112
+ }