-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtasks.dotcommand
More file actions
191 lines (191 loc) · 5.18 KB
/
tasks.dotcommand
File metadata and controls
191 lines (191 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"version": "1.0.0",
"preparedTasks": [
{
"label": "Build Project",
"command": "npm run build",
"description": "Build the project for production",
"category": "Build"
},
{
"label": "Production Build",
"command": "npm run prod",
"description": "Create optimized production build",
"category": "Build"
},
{
"label": "Alternative Prod Build",
"command": "npm run production",
"description": "Alternative production build command",
"category": "Build"
},
{
"label": "Start Development",
"command": "npm run dev",
"description": "Start the development server",
"category": "Development"
},
{
"label": "Start Production Server",
"command": "npm start",
"description": "Start the production server",
"category": "Development"
},
{
"label": "Watch Mode",
"command": "npm run watch",
"description": "Watch files and rebuild on changes",
"category": "Development"
},
{
"label": "Serve Built App",
"command": "npm run serve",
"description": "Serve the built application locally",
"category": "Development"
},
{
"label": "Run Tests",
"command": "npm run test",
"description": "Run the test suite",
"category": "Testing"
},
{
"label": "Watch Tests",
"command": "npm run test:watch",
"description": "Run tests in watch mode",
"category": "Testing"
},
{
"label": "Unit Tests",
"command": "npm run test:unit",
"description": "Run unit tests only",
"category": "Testing"
},
{
"label": "Integration Tests",
"command": "npm run test:integration",
"description": "Run integration tests",
"category": "Testing"
},
{
"label": "E2E Tests",
"command": "npm run test:e2e",
"description": "Run end-to-end tests",
"category": "Testing"
},
{
"label": "Test Coverage",
"command": "npm run coverage",
"description": "Generate test coverage report",
"category": "Testing"
},
{
"label": "Lint Code",
"command": "npm run lint",
"description": "Check code quality and style",
"category": "Code Quality"
},
{
"label": "Format Code",
"command": "npm run format",
"description": "Format code with formatter (prettier/eslint)",
"category": "Code Quality"
},
{
"label": "Type Check",
"command": "npm run type-check",
"description": "Run TypeScript type checking",
"category": "Code Quality"
},
{
"label": "Alternative Type Check",
"command": "npm run type:check",
"description": "Alternative TypeScript check command",
"category": "Code Quality"
},
{
"label": "Install Dependencies",
"command": "npm install",
"description": "Install all project dependencies",
"category": "Project Management"
},
{
"label": "Clean Project",
"command": "npm run clean",
"description": "Clean build artifacts and cache",
"category": "Project Management"
},
{
"label": "Audit Fix",
"command": "npm audit fix",
"description": "Fix security vulnerabilities",
"category": "Project Management"
},
{
"label": "Check Outdated",
"command": "npm outdated",
"description": "Check for outdated dependencies",
"category": "Project Management"
},
{
"label": "Pre-commit Hooks",
"command": "npm run pre-commit",
"description": "Run pre-commit hooks",
"category": "Project Management"
},
{
"label": "Storybook",
"command": "npm run storybook",
"description": "Start Storybook development server",
"category": "Development"
},
{
"label": "Git Status",
"command": "git status",
"description": "Check git repository status",
"category": "Version Control"
},
{
"label": "Git Add All",
"command": "git add .",
"description": "Stage all changes for commit",
"category": "Version Control"
},
{
"label": "Git Commit",
"command": "git commit -m \"updates\"",
"description": "Commit staged changes",
"category": "Version Control"
},
{
"label": "Git Push",
"command": "git push origin main",
"description": "Push changes to remote repository",
"category": "Version Control"
},
{
"label": "Docker Build",
"command": "docker build -t app .",
"description": "Build Docker image from Dockerfile",
"category": "Containerization"
},
{
"label": "Docker Run",
"command": "docker run -p 3000:3000 app",
"description": "Run the Docker container",
"category": "Containerization"
},
{
"label": "Custom Build",
"command": "npm run custom-build",
"description": "Run custom build script that user added",
"category": "Project Management"
},
{
"label": "Deploy to Staging",
"command": "npm run deploy:staging",
"description": "Deploy application to staging environment",
"category": "Deployment"
}
]
}