Skip to content

Commit 824bcb7

Browse files
committed
Meta tweaks
1 parent 8dd370b commit 824bcb7

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

.github/funding.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- 14
1414
- 12
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v1
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- run: npm install

license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44
"description": "Static file serving for Electron apps",
55
"license": "MIT",
66
"repository": "sindresorhus/electron-serve",
7+
"funding": "https://github.com/sponsors/sindresorhus",
78
"author": {
89
"name": "Sindre Sorhus",
910
"email": "[email protected]",
10-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
12+
},
13+
"engines": {
14+
"node": ">=12"
1115
},
1216
"scripts": {
1317
"test": "xo",
@@ -49,7 +53,8 @@
4953
"browser"
5054
],
5155
"rules": {
52-
"no-redeclare": "off"
56+
"no-redeclare": "off",
57+
"prefer-object-spread": "off"
5358
}
5459
}
5560
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Normally you would just use `win.loadURL('file://…')`, but that doesn't work w
66

77
## Install
88

9-
```
10-
$ npm install electron-serve
9+
```sh
10+
npm install electron-serve
1111
```
1212

1313
*Requires Electron 8 or later.*

0 commit comments

Comments
 (0)