2024-03-08 13:32:14 +00:00
|
|
|
[tasks.build]
|
|
|
|
clear = true
|
|
|
|
command = "bun"
|
|
|
|
args = ["--bun", "astro", "build"]
|
|
|
|
|
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"]
|