@cocreate/lazy-loader 1.2.5 → 1.3.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/CHANGELOG.md +14 -0
- package/demo/index.html +1 -0
- package/docs/index.html +2 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.3.0](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.2.6...v1.3.0) (2023-04-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* added pwa manifest ([d9654fb](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/d9654fbb9c803ca385f6e78c900a29b5cf23d337))
|
|
7
|
+
|
|
8
|
+
## [1.2.6](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.2.5...v1.2.6) (2023-04-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* bump dependencies ([dc382c9](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/dc382c91173fc1a37d1c79ebde637443645b3489))
|
|
14
|
+
|
|
1
15
|
## [1.2.5](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.2.4...v1.2.5) (2023-04-11)
|
|
2
16
|
|
|
3
17
|
|
package/demo/index.html
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
|
|
9
9
|
<title>lazy-loader | CoCreateJS</title>
|
|
10
|
+
<link rel="manifest" href="/manifest.json">
|
|
10
11
|
</head>
|
|
11
12
|
|
|
12
13
|
<body>
|
package/docs/index.html
CHANGED
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
<!-- CoCreate CSS CDN -->
|
|
14
14
|
<link rel="stylesheet" href="https://cdn.cocreate.app/latest/CoCreate.min.css" type="text/css" />
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
<link rel="manifest" href="/manifest.json" />
|
|
17
|
+
</head>
|
|
17
18
|
|
|
18
19
|
<body>
|
|
19
20
|
<div collection="" document_id="" name="" id="cocreate-lazy-loader">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/lazy-loader",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "A simple lazy-loader component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lazy-loader",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"webpack-log": "^3.0.1"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@cocreate/docs": "^1.6.
|
|
64
|
-
"@cocreate/hosting": "^1.8.
|
|
65
|
-
"@cocreate/observer": "^1.6.
|
|
63
|
+
"@cocreate/docs": "^1.6.5",
|
|
64
|
+
"@cocreate/hosting": "^1.8.5",
|
|
65
|
+
"@cocreate/observer": "^1.6.5"
|
|
66
66
|
}
|
|
67
67
|
}
|