Skip to content

Commit

Permalink
Fix missing GitHub Sponsor to funding field in package.json (#67)
Browse files Browse the repository at this point in the history
Ref https://github.com/sponsors/stylelint

To verify this change, run `npm fund` like this:

```sh-session
$ npm fund .
1: opencollective funding available at the following URL: https://opencollective.com/stylelint
2: github funding available at the following URL: https://github.com/sponsors/stylelint
Run `npm fund [<package-spec>] --which=1`, for example, to open the first funding URL listed in that package
```
  • Loading branch information
ybiquitous committed Jul 2, 2024
1 parent 358f81f commit adb8b1c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Changed: bump `npm-package-json-lint` to `^8.0.0`.
- Changed: bump `npm-package-json-lint-config-default` to `^7.0.0`.
- Fixed: missing GitHub Sponsor to `funding` field in `package.json`.

## 5.0.1

Expand Down
14 changes: 10 additions & 4 deletions package-lock.json

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

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@
"npm-package-json-lint-config"
],
"repository": "stylelint/npm-package-json-lint-config",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"main": "lib/npm-package-json-lint-config.js",
Expand Down

0 comments on commit adb8b1c

Please sign in to comment.