aos-modern 3.0.1 → 3.0.2
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/CHANGELOG.md +6 -0
- package/package.json +11 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [3.0.1]
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- **Docs**: Removed obsolete Codepen example links that pointed to legacy repository demos.
|
|
7
|
+
- **Docs**: Added CDN (unpkg) setup instructions alongside local `node_modules` options in both `README.md` and `README.zh-CN.md`.
|
|
8
|
+
|
|
3
9
|
## [3.0.0]
|
|
4
10
|
|
|
5
11
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aos-modern",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Animate on scroll library using modern browser APIs",
|
|
5
5
|
"homepage": "https://gabulaideu.github.io/aos/",
|
|
6
6
|
"author": "galun <gabulaideu@gmail.com>",
|
|
@@ -11,6 +11,16 @@
|
|
|
11
11
|
"./react": "./dist/react.js",
|
|
12
12
|
"./vue": "./dist/vue.js"
|
|
13
13
|
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"aos",
|
|
16
|
+
"aos-modern",
|
|
17
|
+
"animate-on-scroll",
|
|
18
|
+
"scroll-animation",
|
|
19
|
+
"css3-animations",
|
|
20
|
+
"intersection-observer",
|
|
21
|
+
"react",
|
|
22
|
+
"vue"
|
|
23
|
+
],
|
|
14
24
|
"repository": {
|
|
15
25
|
"type": "git",
|
|
16
26
|
"url": "https://github.com/gabulaideu/aos.git"
|