ci: add checks on examples (#605)

This commit is contained in:
Marco Pasqualetti
2025-03-05 19:00:08 +01:00
committed by GitHub
parent a322ce2fad
commit 9b6f8098b6
6 changed files with 138 additions and 11 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ tuono new [NAME]
You can install any example included in this folder by just using the `--template` flag:
```sh
tuono new [NAME] --template [TEMPLATE]
tuono new [NAME] --template [TEMPLATE]
```
`[TEMPLATE]` is the folder name.
-2
View File
@@ -5,5 +5,3 @@ This is the starter tuono project. To download it run in your terminal:
```sh
tuono new my-first-tuono-app
```
+5 -5
View File
@@ -1,11 +1,11 @@
import type { TuonoConfig } from 'tuono/config'
const config: TuonoConfig = {
vite: {
alias: {
'@': 'src',
},
},
vite: {
alias: {
'@': 'src',
},
},
}
export default config