Skip to content

Commit

Permalink
fix(deps): upgrade dependencies (#33)
Browse files Browse the repository at this point in the history
Changes one log level from info to debug
  • Loading branch information
dhutchison committed May 5, 2024
1 parent 9162ce6 commit 93646f9
Show file tree
Hide file tree
Showing 11 changed files with 3,283 additions and 2,570 deletions.
25 changes: 25 additions & 0 deletions .devcontainer/devcontainer.json
@@ -0,0 +1,25 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
2 changes: 1 addition & 1 deletion .vscode/settings.json
@@ -1,7 +1,7 @@
{
"files.eol": "\n",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.rulers": [ 140 ],
"eslint.enable": true
Expand Down
2 changes: 2 additions & 0 deletions dev-user-storage/.gitignore
@@ -0,0 +1,2 @@
accessories
persist
19 changes: 19 additions & 0 deletions dev-user-storage/config.json
@@ -0,0 +1,19 @@
{
"bridge": {

},
"description": "HomeBridge HTTP Status Control",
"accessories": [],
"platforms": [
{
"platform": "Ebeco",
"plugin_map": {
"plugin_name": "@devwithimagination/homebridge-ebeco"
},
"name": "Ebeco",
"username": "USER NAME",
"password": "PASSWORD",
"apiHost": "http://localhost:8080"
}
]
}
2 changes: 1 addition & 1 deletion docker-compose.yml
@@ -1,7 +1,7 @@
version: "3.8"
services:
wiremock:
image: wiremock/wiremock:2.34.0
image: wiremock/wiremock:3.5.4
ports:
- "8080:8080"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion nodemon.json
Expand Up @@ -4,7 +4,7 @@
],
"ext": "ts",
"ignore": [],
"exec": "tsc && homebridge -I -D",
"exec": "tsc && homebridge -I -D -U ./dev-user-storage",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
Expand Down

0 comments on commit 93646f9

Please sign in to comment.