Skip to content

Commit

Permalink
fix: add homey app build to build script
Browse files Browse the repository at this point in the history
`homey app build` alters some json files.
  • Loading branch information
RobinBol committed Jun 6, 2023
1 parent 5633c98 commit 18a4291
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
25 changes: 19 additions & 6 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,27 @@
"version": "1.0.0",
"compatibility": ">=5.0.0",
"sdk": 3,
"platforms": ["local"],
"platforms": [
"local"
],
"name": {
"en": "Everything Smart"
},
"tags": {
"en": ["everything", "presence", "everythingsmart", "mmwave"]
"en": [
"everything",
"presence",
"everythingsmart",
"mmwave"
]
},
"brandColor": "#5621F5",
"description": {
"en": "Builing a Better Smart Home"
},
"category": ["security"],
"category": [
"security"
],
"permissions": [],
"images": {
"small": "/assets/images/small.png",
Expand Down Expand Up @@ -285,8 +294,12 @@
}
}
},
"platforms": ["local"],
"connectivity": ["lan"],
"platforms": [
"local"
],
"connectivity": [
"lan"
],
"discovery": "everything-presence-one",
"images": {
"small": "/drivers/everything-presence-one/assets/images/small.jpg",
Expand Down Expand Up @@ -487,4 +500,4 @@
]
}
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"main": "app.ts",
"scripts": {
"build": "npm run format && tsc",
"build": "npm run format && tsc && homey app build",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"format": "prettier --write ."
},
Expand Down

0 comments on commit 18a4291

Please sign in to comment.