Skip to content

Commit ecb29b8

Browse files
committed
Merge branch 'develop' into feature/ditch-arduino-serial
2 parents 138c09f + 8651074 commit ecb29b8

164 files changed

Lines changed: 3793 additions & 2325 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/cdn-upload-version-info/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ runs:
4242
remote-host: "${{ inputs.bunny-stor-hostname }}"
4343
remote-user: "${{ inputs.bunny-stor-username }}"
4444
remote-password: "${{ inputs.bunny-stor-password }}"
45-
remote-path: "/${{ inputs.fw-version }}/${{ inputs.board }}"
45+
remote-path: "/${{ inputs.fw-version }}/"
4646
local-path: "upload"
4747
sync: "full"

.github/scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@actions/core": "^1.10.1",
1212
"@actions/github": "^6.0.0",
1313
"ini": "^5.0.0",
14-
"semver": "^7.6.0"
14+
"semver": "^7.7.0"
1515
},
1616
"engines": {
1717
"node": ">=20.18",

.github/scripts/pnpm-lock.yaml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data/.gitkeep

Whitespace-only changes.

frontend/.eslintignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ node_modules
77
.env.*
88
!.env.example
99

10-
# Ignore files for PNPM, NPM and YARN
10+
# Package Managers
1111
pnpm-lock.yaml
1212
package-lock.json
1313
yarn.lock
14+
15+
# Generated or imported files
16+
/components.json
17+
/src/lib/_fbs
18+
/src/lib/components/ui

frontend/.eslintrc.cjs

Lines changed: 0 additions & 30 deletions
This file was deleted.

frontend/.gitignore

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
1-
.DS_Store
1+
test-results
22
node_modules
3-
/build
3+
4+
# Output
5+
.output
6+
.vercel
7+
.netlify
8+
.wrangler
49
/.svelte-kit
5-
/package
10+
/build
11+
12+
# OS
13+
.DS_Store
14+
Thumbs.db
15+
16+
# Env
617
.env
718
.env.*
819
!.env.example
20+
!.env.test
21+
22+
# Vite
923
vite.config.js.timestamp-*
1024
vite.config.ts.timestamp-*

frontend/.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
engine-strict=true
1+
engine-strict=true

frontend/.prettierignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ node_modules
77
.env.*
88
!.env.example
99

10-
# Ignore files for PNPM, NPM and YARN
10+
# Package Managers
1111
pnpm-lock.yaml
1212
package-lock.json
1313
yarn.lock
14+
15+
# Generated or imported files
16+
/components.json
17+
/src/lib/_fbs
18+
/src/lib/components/ui

frontend/.prettierrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"singleQuote": true,
66
"trailingComma": "es5",
77
"printWidth": 100,
8-
"plugins": ["prettier-plugin-svelte"],
9-
"pluginSearchDirs": ["."],
8+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
109
"overrides": [
1110
{ "files": "*.svelte", "options": { "parser": "svelte" } },
1211
{ "files": "package*.json", "options": { "tabWidth": 2, "useTabs": true } }

0 commit comments

Comments
 (0)