File tree 6 files changed +117
-58
lines changed
6 files changed +117
-58
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name : Discord Webhooks
4
+
5
+ # Controls when the workflow will run
6
+ on :
7
+ release :
8
+ types : [released, prereleased]
9
+
10
+ jobs :
11
+ github-releases-to-discord :
12
+ uses : homebridge/.github/.github/workflows/discord-webhooks.yml@latest
13
+ with :
14
+ footer_title : " plugin-ui-utils"
15
+ secrets :
16
+ DISCORD_WEBHOOK_URL_LATEST : ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
17
+ DISCORD_WEBHOOK_URL_BETA : ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
Original file line number Diff line number Diff line change 121
121
122
122
# IDEs
123
123
.idea
124
+ .DS_Store
Original file line number Diff line number Diff line change 4
4
"editor.insertSpaces" : true ,
5
5
"editor.formatOnSave" : true ,
6
6
"editor.codeActionsOnSave" : {
7
- "source.fixAll.eslint" : true
7
+ "source.fixAll.eslint" : " explicit "
8
8
},
9
9
"editor.rulers" : [
10
10
140
Original file line number Diff line number Diff line change 1
- ## 1.0.0
1
+ # Changelog
2
2
3
- Initial release
3
+ All notable changes to this project will be documented in this file. See [ standard-version] ( https://github.com/conventional-changelog/standard-version ) for commit guidelines.
4
+
5
+ ### [ 1.0.1] ( https://github.com/homebridge/plugin-ui-utils/compare/v1.0.0...v1.0.1 ) (2024-01-08)
6
+
7
+
8
+ ### Other Changes
9
+
10
+ * Add discord webhook to notify developers of new updates
11
+ * update dependencies
12
+
13
+ ### [ 1.0.0] ( https://github.com/homebridge/plugin-ui-utils/tree/v1.0.0 ) (2023-10-23)
14
+
15
+
16
+ ### Other Changes
17
+
18
+ * Initial release
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @homebridge/plugin-ui-utils" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"description" : " A tool to help plugins provide custom ui screens in the Homebridge UI" ,
5
5
"author" : " oznu" ,
6
6
"license" : " MIT" ,
15
15
"main" : " dist/index.js" ,
16
16
"types" : " dist/index.d.ts" ,
17
17
"scripts" : {
18
+ "check" : " npm install && npm outdated" ,
18
19
"lint" : " eslint src/**.ts --max-warnings=0" ,
19
20
"build" : " rimraf ./dist && tsc --project tsconfig.json && tsc --project tsconfig.ui.json" ,
20
21
"prepublishOnly" : " npm run lint && npm run build" ,
21
22
"test" : " echo \" No test script specified\" && exit 0" ,
22
23
"test-coverage" : " echo \" No test-coverage script specified\" && exit 0"
23
24
},
24
25
"devDependencies" : {
25
- "@types/node" : " ^20.10.4 " ,
26
- "@typescript-eslint/eslint-plugin" : " ^6.14 .0" ,
27
- "@typescript-eslint/parser" : " ^6.14 .0" ,
26
+ "@types/node" : " ^20.10.7 " ,
27
+ "@typescript-eslint/eslint-plugin" : " ^6.18 .0" ,
28
+ "@typescript-eslint/parser" : " ^6.18 .0" ,
28
29
"eslint" : " ^8.56.0" ,
29
30
"rimraf" : " ^5.0.5" ,
30
31
"ts-node" : " ^10.9.2" ,
34
35
" homebridge" ,
35
36
" homebridge-ui"
36
37
]
37
- }
38
+ }
You can’t perform that action at this time.
0 commit comments