forked from teambtcmap/btcmap.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.replit
More file actions
39 lines (29 loc) · 639 Bytes
/
.replit
File metadata and controls
39 lines (29 loc) · 639 Bytes
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
modules = ["web", "nodejs-20"]
run = "npm run dev"
[nix]
channel = "stable-24_05"
[deployment]
run = ["sh", "-c", "npm run dev"]
deploymentTarget = "cloudrun"
[[ports]]
localPort = 5173
externalPort = 80
[agent]
expertMode = true
[workflows]
[[workflows.workflow]]
name = "Pre-commit Checks"
mode = "parallel"
author = 23073448
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "npm run format:fix"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "yarn run eslint"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "yarn run typecheck"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "yarn run check"