@cocreate/lazy-loader 1.2.6 → 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 +7 -0
- package/demo/index.html +1 -0
- package/docs/index.html +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [1.2.6](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.2.5...v1.2.6) (2023-04-11)
|
|
2
9
|
|
|
3
10
|
|
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