Skip to content

Commit

Permalink
Fixes an issue with dependencies for 10.* breaking 8.* homey versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Kling committed May 1, 2023
1 parent f2b6276 commit bab6ab9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/releasenotes/v02-00-00.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ title: Release Notes v2.0.0
### RC20
* **2.0.4** [Release notes](docs/releasenotes/v02-00-04.md)

### RC21
* **2.0.5** [Release notes](docs/releasenotes/v02-00-05.md)

## Docs
Compatibility with Homey 3.0 SDK
2 changes: 1 addition & 1 deletion docs/releasenotes/v02-00-04.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ layout: page
title: Release Notes v2.0.4
---

(ries to fix an issue with dependencies for 10.* breaking 8.* homey versions.
Tries to fix an issue with dependencies for 10.* breaking 8.* homey versions.
6 changes: 6 additions & 0 deletions docs/releasenotes/v02-00-05.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: page
title: Release Notes v2.0.5
---

Fixes an issue with dependencies for 10.* breaking 8.* homey versions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"react-router-dom": "^5.0.0",
"react-scroll-locky": "^1.5.0",
"reflect-metadata": "^0.1.13",
"socket.io-client": "^2.2.0",
"socket.io-client": "^2.5.0",
"strongly-typed-events": "^1.4.10",
"tslint-react": "^4.0.0",
"tsyringe": "^4.0.1",
Expand Down
12 changes: 11 additions & 1 deletion webpack.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ var appConfig = (env, argv) => {
from: 'node_modules/homey-api',
to: distPath + '/node_modules/homey-api'
},
{
from: 'node_modules/socket.io-client',
to: distPath + '/node_modules/socket.io-client'
},
{
from: 'node_modules/regenerator-runtime',
to: distPath + '/node_modules/regenerator-runtime'
},
{
from: 'locales/**/*',
to: distPath
Expand Down Expand Up @@ -190,7 +198,9 @@ var appConfig = (env, argv) => {
"@app/model": "@app/model",
"@app/helper": "@app/helper",
"@app/services": "@app/services",
"@app/flows": "@app/flows"
"@app/flows": "@app/flows",
"socket.io-client": "socket.io-client",
"regenerator-runtime": "regenerator-runtime"
},

plugins: plugins,
Expand Down

0 comments on commit bab6ab9

Please sign in to comment.