react-js-banner 0.6.0-beta2 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.babelrc CHANGED
@@ -1,13 +1,10 @@
1
1
  {
2
-
3
- "presets":[
4
- "@babel/preset-env",
5
- [
6
- "@babel/preset-react",
7
- {
8
- "runtime": "automatic"
9
- }
10
- ]
2
+ "presets": [
3
+ "@babel/preset-env",
4
+ "@babel/preset-react",
5
+ ],
6
+ "plugins": [
7
+ "@babel/plugin-transform-object-rest-spread",
8
+ "@babel/plugin-transform-react-jsx",
11
9
  ]
12
-
13
10
  }
package/README.md CHANGED
@@ -109,10 +109,23 @@ Props available:
109
109
  | transitionTime | number | N| time for the transition to take |
110
110
  | showBanner | bool | N| force the banner to show or hide, this will override the `visibleTime` variable |
111
111
 
112
+ # Donations
112
113
 
114
+ If you think that any information you obtained here is useful and worth of some money and are willing to pay for it, feel free to send any amount through Paypal :)
115
+
116
+
117
+ [![](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2MSMEVFF9P33N)
118
+
119
+ You can also follow me on Patreon:
120
+
121
+ https://patreon.com/Jacware?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink
113
122
 
114
123
  # Changelog
115
124
 
125
+ ### v0.6.0
126
+ * Bug fixes
127
+ * Dependencies updated
128
+
116
129
  ### v0.5.2
117
130
  * Removed polyfill as dependency
118
131