1
Fork 0
driftingnebula-com/Makefile.toml

30 lines
534 B
Makefile
Raw Permalink Normal View History

2024-03-08 13:32:14 +00:00
[tasks.build]
clear = true
command = "bun"
args = ["--bun", "astro", "build"]
2024-03-08 14:00:17 +00:00
[tasks.deploy-netlify]
clear = true
command = "netlify"
dependencies = ["lint", "build"]
args = ["deploy", "-p", "-d", "out/", "-s", "driftingnebula-com"]
2024-03-02 12:32:21 +00:00
[tasks.dev]
clear = true
2024-03-02 12:57:37 +00:00
command = "bun"
2024-03-02 12:32:21 +00:00
args = ["--bun", "astro", "dev"]
2024-03-02 12:35:08 +00:00
[tasks.lint]
clear = true
dependencies = ["lint-ts", "lint-scss"]
[tasks.lint-ts]
clear = true
2024-03-02 12:57:37 +00:00
command = "bun"
2024-03-02 12:35:08 +00:00
args = ["xo"]
[tasks.lint-scss]
clear = true
2024-03-02 12:57:37 +00:00
command = "bun"
2024-03-02 12:35:08 +00:00
args = ["--bun", "stylelint", "source/**/*.scss"]