Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,23 @@ jobs:
prettier:
name: Formatting Check
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm

- run: npm ci
- run: npm run format:check

build:
name: Production Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm

- run: npm ci
- run: npm run build
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
.DS_Store

.env.local
.env.development.local
.env.test.local
.env.production.local
.env.*.local

npm-debug.log*
yarn-debug.log*
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
- gui: Fixed double episode content in TeddyStudio [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/296](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/296)
- gui: Added formatting (internal)
- gui: Fixed some display issues in TeddyStudio labels
- gui: Fixed bug deleting only marked notifications
- gui: Added ESP32-C3 UART Gateway to cc3200 Box flashing guide [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/292](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/292)

### Commits

Expand Down
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You'll need to allow CORS for your teddyCloud instance used for development. The

## NPM Environment file '.env'

Please place an environment file '.env.development.local' in the teddycloud_web directory.
Please place an environment file '.env.local' in the teddycloud_web directory.

```env
VITE_APP_TEDDYCLOUD_API_URL=http://<teddycloud-ip>
Expand Down Expand Up @@ -503,22 +503,6 @@ This means:
- Performance reflects the real-world production setup
- You can verify that your build works correctly before deployment

## GitHub Actions Runtime

The workflow opts GitHub Actions into the Node.js 24 action runtime via:

```yaml
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
```

This avoids Node.js 20 deprecation warnings for JavaScript-based actions such as:

- `actions/checkout@v4`
- `actions/setup-node@v4`

while keeping the project runtime pinned separately through `setup-node`.

## Learn More

You can learn more in the [Vite documentation](https://vitejs.dev/guide/).
Expand Down
51 changes: 32 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"private": true,
"homepage": "/web",
"dependencies": {
"@ant-design/icons": "^6.2.2",
"@ant-design/icons": "^6.2.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@remix-run/router": "^1.23.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.2",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/w3c-web-serial": "^1.0.8",
Expand Down
Loading