@cocreate/lazy-loader 1.6.6 → 1.6.8

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 CHANGED
@@ -1,3 +1,19 @@
1
+ ## [1.6.8](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.6.7...v1.6.8) (2023-11-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * meta name typo ([db6a996](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/db6a996327ceffe64dbbc26ecc71a5cd44265d6c))
7
+ * update host ([8f5997b](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/8f5997b775e136c6772912d4eaba0caf283189b4))
8
+
9
+ ## [1.6.7](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.6.6...v1.6.7) (2023-11-03)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * favicon.ico path ([9a18f36](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/9a18f36d977ff6b36086719bdaa11f5b52892806))
15
+ * update dependencies to the lates versions ([52035aa](https://github.com/CoCreate-app/CoCreate-lazy-loader/commit/52035aab80f4886177dbd43bc697a1067829ee00))
16
+
1
17
  ## [1.6.6](https://github.com/CoCreate-app/CoCreate-lazy-loader/compare/v1.6.5...v1.6.6) (2023-10-25)
2
18
 
3
19
 
@@ -12,8 +12,7 @@ module.exports = {
12
12
  "pathname": "/docs/lazy-loader/index.html",
13
13
  "src": "{{./docs/index.html}}",
14
14
  "host": [
15
- "*",
16
- "general.cocreate.app"
15
+ "*"
17
16
  ],
18
17
  "directory": "lazy-loader",
19
18
  "content-type": "{{content-type}}",
package/demo/index.html CHANGED
@@ -6,9 +6,9 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1" />
7
7
  <link
8
8
  rel="icon"
9
- href="https://cdn.cocreate.app/favicon.ico"
10
- type="image/ico"
11
- sizes="16x16" />
9
+ type="image/png"
10
+ sizes="32x32"
11
+ href="../assets/favicon.ico" />
12
12
  <title>lazy-loader | CoCreateJS</title>
13
13
  <link rel="manifest" href="/manifest.webmanifest" />
14
14
  </head>
package/docs/index.html CHANGED
@@ -11,10 +11,10 @@
11
11
  sizes="32x32"
12
12
  href="https://cocreate.app/images/favicon.ico" />
13
13
  <meta
14
- key="description"
14
+ name="description"
15
15
  content="A simple HTML5 and pure javascript component. Easy configuration using data-attributes and highly styleable." />
16
16
  <meta
17
- key="keywords"
17
+ name="keywords"
18
18
  content="helper classes, utility classes, css framework, css library, inline style classes" />
19
19
  <meta name="robots" content="index,follow" />
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/lazy-loader",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
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",
@@ -58,6 +58,6 @@
58
58
  "webpack-log": "^3.0.1"
59
59
  },
60
60
  "dependencies": {
61
- "@cocreate/observer": "^1.11.6"
61
+ "@cocreate/observer": "^1.11.7"
62
62
  }
63
63
  }