-
Notifications
You must be signed in to change notification settings - Fork 445
Expand file tree
/
Copy pathtasks.json
More file actions
142 lines (142 loc) · 2.9 KB
/
Copy pathtasks.json
File metadata and controls
142 lines (142 loc) · 2.9 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
// https://code.visualstudio.com/docs/editor/tasks
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: install",
"detail": "Install dev dependencies",
"type": "shell",
"command": "npm install",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "npm: dev",
"detail": "Run dev server",
"type": "shell",
"command": "npm run dev",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "npm: dev ext-safari-mac",
"detail": "Run dev server and build dev resource to xcode dist",
"type": "shell",
"command": "npm run dev:ext-safari-mac",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "npm: dev ext-safari-ios",
"detail": "Run dev server and build dev resource to xcode dist",
"type": "shell",
"command": "npm run dev:ext-safari-ios",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "npm: build mac",
"detail": "Build to xcode dist path",
"type": "shell",
"command": "npm run build:mac",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "npm: build ios",
"detail": "Build to xcode dist path",
"type": "shell",
"command": "npm run build:ios",
"group": "build",
"options": {
"cwd": "./"
}
},
{
"label": "xcodebuild: mac-debug",
"detail": "xcodebuild mac debug",
"type": "shell",
"command": "xcodebuild -scheme Mac -configuration Debug",
"group": "build",
"options": {
"cwd": "./xcode/"
}
},
{
"label": "xcodebuild: mac-vite",
"detail": "xcodebuild mac vite",
"type": "shell",
"command": "xcodebuild -scheme Mac-Vite-Dev -configuration Vite",
"group": "build",
"options": {
"cwd": "./xcode/"
}
},
{
"label": "dev: ext-safari-mac",
"detail": "npm: dev ext-safari-mac + xcodebuild: mac-vite",
"presentation": {
"reveal": "silent"
},
"dependsOrder": "sequence",
"dependsOn": ["npm: dev ext-safari-mac", "xcodebuild: mac-vite"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build: mac debug",
"detail": "npm: build mac + xcodebuild: mac-debug",
"presentation": {
"reveal": "silent"
},
"dependsOrder": "sequence",
"dependsOn": ["npm: build mac", "xcodebuild: mac-debug"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "lint: js",
"detail": "lint js with eslint",
"type": "shell",
"command": "npm run lint:js",
"group": "test",
"options": {
"cwd": "./"
}
},
{
"label": "lint: css",
"detail": "lint css with stylelint",
"type": "shell",
"command": "npm run lint:css",
"group": "test",
"options": {
"cwd": "./"
}
},
{
"label": "prettier",
"detail": "applying prettier formatting for all supported files",
"type": "shell",
"command": "npm run prettier",
"options": {
"cwd": "./"
},
"problemMatcher": []
}
]
}