-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript-tooling.json
More file actions
49 lines (49 loc) · 1.34 KB
/
javascript-tooling.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"id": "profile-javascript-tooling",
"name": "JavaScript Tooling",
"description": "Common npm-based commands for frontend repositories",
"commands": [
{
"id": "cmd-npm-install",
"name": "Install Dependencies",
"executable": "npm",
"arguments": "install",
"workingDirectory": ".",
"shell": "bash",
"environmentVariables": {},
"iterationEnabled": false,
"requireConfirmation": false,
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-01T00:00:00Z"
},
{
"id": "cmd-npm-lint",
"name": "Lint",
"executable": "npm",
"arguments": "run lint",
"workingDirectory": ".",
"shell": "bash",
"environmentVariables": {},
"iterationEnabled": false,
"requireConfirmation": false,
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-01T00:00:00Z"
},
{
"id": "cmd-npm-test",
"name": "Test",
"executable": "npm",
"arguments": "test",
"workingDirectory": ".",
"shell": "bash",
"environmentVariables": {},
"iterationEnabled": false,
"requireConfirmation": false,
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-01T00:00:00Z"
}
],
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-01T00:00:00Z",
"isFavorite": false
}