maverick-wave 3.0.0 → 3.1.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.
@@ -5,7 +5,10 @@
5
5
  "Bash(npm run:*)",
6
6
  "Bash(node:*)",
7
7
  "Bash(git ls-tree:*)",
8
- "Bash(git ls-remote:*)"
8
+ "Bash(git ls-remote:*)",
9
+ "Bash(npm outdated:*)",
10
+ "Bash(npm update:*)",
11
+ "Bash(npm audit:*)"
9
12
  ]
10
13
  }
11
14
  }
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ Patch releases are only for test purposes - here I only document major and minor
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
 
9
+ ## [3.1.0] - 2026-04-04
10
+
11
+ ### Changed
12
+
13
+ - release now via npm
14
+
9
15
  ## [3.0.0] - 2026-04-04
10
16
 
11
17
  ### Added
package/README.md CHANGED
@@ -27,7 +27,7 @@ The result is a framework that balances utility with simplicity, offering develo
27
27
 
28
28
  ## Installation & Usage
29
29
 
30
- ### 1. CDN (jsDelivr — GitHub)
30
+ ### 1. CDN (jsDelivr)
31
31
 
32
32
  ```html
33
33
  <!DOCTYPE html>
@@ -38,18 +38,17 @@ The result is a framework that balances utility with simplicity, offering develo
38
38
  <title>My MaverickWave Project</title>
39
39
  <link
40
40
  rel="stylesheet"
41
- href="https://cdn.jsdelivr.net/gh/m1well/maverick-wave@v2.36.1/maverick-wave.min.css"
41
+ href="https://cdn.jsdelivr.net/npm/maverick-wave@3.0.0/maverick-wave.min.css"
42
42
  />
43
43
  </head>
44
44
  <body>
45
45
  <!-- Your content here -->
46
-
47
- <script src="https://cdn.jsdelivr.net/gh/m1well/maverick-wave@v2.36.1/maverick-wave.min.js"></script>
46
+ <script src="https://cdn.jsdelivr.net/npm/maverick-wave@3.0.0/maverick-wave.min.js"></script>
48
47
  </body>
49
48
  </html>
50
49
  ```
51
50
 
52
- Always pin to a specific version tag (e.g., `@v2.36.1`) in production for stability.
51
+ Always pin to a specific version (e.g., `@3.0.0`) in production for stability.
53
52
 
54
53
  ### 2. Direct Download
55
54