Skip to content

Commit abbbf9c

Browse files
authored
Merge pull request #71 from DaneEvans/lastBuild
Merge pull request #67 from DaneEvans/fix_Biome
2 parents ca67988 + 464ce6f commit abbbf9c

File tree

8 files changed

+127
-2785
lines changed

8 files changed

+127
-2785
lines changed

.devcontainer/devcontainer.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/universal:2",
3+
"postCreateCommand": "pnpm i",
4+
"features": {},
5+
"customizations": {},
6+
"scripts": {
7+
"postStart": "echo 'Dev container started!'"
8+
}
9+
}

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
push:
55
branches:
66
- main
7+
- master
78

89
pull_request:
910
branches:
1011
- main
12+
- master
1113

1214

1315
jobs:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ node_modules
44
dist
55
.DS_Store
66
.vscode/settings.json
7+
8+
#Dotfiles
9+
.dotfiles/

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,15 @@ API backend used for meshtastic.org and associated tools.
1313

1414
![Alt](https://repobeats.axiom.co/api/embed/42de1569e61bc8171266ba5e0cc1dab2e0a3986b.svg "Repobeats analytics image")
1515

16+
17+
## Contributing
18+
19+
- There's a codespace available for this repository, so you can start coding right away.
20+
- To build the project, run `pnpm install` and then `pnpm build`.
21+
- To run the project, use `pnpm dev`.
22+
- To run the linter, use `pnpm biome lint`, or to fix files automatically, use `pnpm biome lint --write`.
23+
- To run the formatter, use `pnpm biome format`, or to fix files automatically, use `pnpm biome format --write`.
24+
- To run the type checker, use `pnpm biome check`, or to fix files automatically, use `pnpm biome check --write`.
25+
26+
27+

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
33
"assist": { "actions": { "source": { "organizeImports": "on" } } },
44
"files": {
55
"ignoreUnknown": true

0 commit comments

Comments
 (0)