@tsirosgeorge/toastnotification 5.3.2 → 5.3.3

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.
Files changed (2) hide show
  1. package/Readme.md +2 -2
  2. package/package.json +3 -2
package/Readme.md CHANGED
@@ -8,7 +8,7 @@ A lightweight, customizable, and dependency-free toast notification system writt
8
8
 
9
9
  ## 📦 Include package via cdn
10
10
  ```html
11
- <script src="https://cdn.jsdelivr.net/npm/@tsirosgeorge/toastnotification@5.3.2/toast.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/@tsirosgeorge/toastnotification@5.3.3/toast.min.js"></script>
12
12
  ```
13
13
 
14
14
  ## 📦 Include package via npm
@@ -155,4 +155,4 @@ This software is provided "as is", without warranty of any kind. Use at your own
155
155
 
156
156
  ---
157
157
 
158
- **Note:** This package is marked as `UNLICENSED` in `package.json` to reflect these restrictions.
158
+ **Note:** See the [LICENSE](LICENSE) file included in this package for full terms and conditions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsirosgeorge/toastnotification",
3
- "version": "5.3.2",
3
+ "version": "5.3.3",
4
4
  "description": "a toast notification plugin",
5
5
  "main": "toast.min.js",
6
6
  "module": "toast.module.js",
@@ -16,7 +16,8 @@
16
16
  "build:js": "terser toast.js --compress --mangle --output toast.min.js",
17
17
  "build": "npm run build:css && npm run build:js",
18
18
  "prepublishOnly": "npm run build",
19
- "release": "npm version && git push origin main --follow-tags && npm publish --access public"
19
+ "release": "npm version && git push origin main --follow-tags && npm publish --access public",
20
+ "publish": "npm run build && git add -A && git commit -m \"Release v5.3.2: Add LICENSE file and license documentation\" && git tag v5.3.2 && git push origin main --tags && npm publish --access public"
20
21
  },
21
22
  "files": [
22
23
  "toast.js",