diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..3d17476 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,15 @@ +# These are supported funding model platforms + +github: [mroderick] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +thanks_dev: # +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/CHANGES.md b/CHANGES.md index 32e62af..e713b5c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## 1.9.5 + +- [`ea4d477`](https://github.com/mroderick/PubSubJS/commit/ea4d477c593b0832092105e6ab9d985ea3cf301f) + Add support for server side rendering (Artur Kudeł) + +_Released on 2024-10-28._ + ## 1.9.4 - [`ae3284d`](https://github.com/mroderick/PubSubJS/commit/ae3284d46054b189e143b405e1bfc6c09643bf77) diff --git a/README.md b/README.md index d514e5e..beaccda 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,7 @@

- Travis build statusDependenciesDevDependenciesNPM versionMIT LicenseNPM downloads/monthCoverage Status diff --git a/package-lock.json b/package-lock.json index 0a88278..e0690c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "pubsub-js", - "version": "1.9.4", + "version": "1.9.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7dabb1a..bcc5fac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pubsub-js", - "version": "1.9.4", + "version": "1.9.5", "description": "Dependency free publish/subscribe library", "main": "./src/pubsub.js", "directories": { diff --git a/src/pubsub.js b/src/pubsub.js index 29f73bc..d4b311b 100644 --- a/src/pubsub.js +++ b/src/pubsub.js @@ -32,7 +32,7 @@ /* eslint-enable no-undef */ } -}(( typeof window === 'object' && window ) || this, function (PubSub){ +}(( typeof window === 'object' && window ) || this || global, function (PubSub){ 'use strict'; var messages = {},