From beaa294a0ef7f781d829362b5fccfced921bd087 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Fri, 21 Jun 2024 12:25:49 +0900 Subject: [PATCH] Fix missing `funding` field in `package.json` (#325) --- CHANGELOG.md | 4 ++++ package-lock.json | 10 ++++++++++ package.json | 10 ++++++++++ 3 files changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d681088..7c61375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Head + +- Fixed: missing `funding` field in `package.json`. + ## 36.0.0 - Removed: `stylelint` less than `16.1.0` from peer dependencies. diff --git a/package-lock.json b/package-lock.json index 36ae189..d7deebd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,16 @@ "": { "name": "stylelint-config-standard", "version": "36.0.0", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" + }, + { + "type": "github", + "url": "https://github.com/sponsors/stylelint" + } + ], "license": "MIT", "dependencies": { "stylelint-config-recommended": "^14.0.0" diff --git a/package.json b/package.json index 20e03a1..e74f1df 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,16 @@ "standard" ], "repository": "stylelint/stylelint-config-standard", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" + }, + { + "type": "github", + "url": "https://github.com/sponsors/stylelint" + } + ], "license": "MIT", "author": "Stylelint", "main": "index.js",