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.
- package/.claude/settings.local.json +4 -1
- package/CHANGELOG.md +6 -0
- package/README.md +4 -5
- package/maverick-wave.css +8241 -0
- package/maverick-wave.js +587 -0
- package/package.json +2 -2
- package/release.sh +3 -0
- package/src/partials/get-started-container.html +3 -3
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
|
|
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/
|
|
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
|
|
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
|
|