Skip to content

Commit 234ba19

Browse files
committed
Merge branch 'hotfix/19.0.5'
2 parents 33c90c6 + 06b49d9 commit 234ba19

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Version 19
44

5+
#### 19.0.5
6+
7+
- Removed `.eslintrc.json`, `LICENSE`, `CHANGELOG.md`, `CODE_OF_CONDUCT.md`, `README.md`, `package.json` from the package files, as they didn't have any impact on [code quality](https://docs.npmjs.com/searching-for-and-choosing-packages-to-download#quality).
8+
59
#### 19.0.4
610

711
- Removed Babel plugin to polyfill `Object.assign()`, as suggested in #611.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Please note that the video poster can be lazily loaded too.
176176

177177
## 👩‍💻 Getting started - Script
178178

179-
The latest, recommended version of LazyLoad is **19.0.4**.
179+
The latest, recommended version of LazyLoad is **19.0.5**.
180180
Note that if you need to support Internet Explorer 11, you need to use version 17.9.0 or below.
181181

182182
Quickly understand how to upgrade from a previous version reading the [practical upgrade guide](UPGRADE.md).
@@ -186,7 +186,7 @@ Quickly understand how to upgrade from a previous version reading the [practical
186186
The easiest way to use LazyLoad is to include the script from a CDN.
187187

188188
```html
189-
<script src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/lazyload.min.js"></script>
189+
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/lazyload.min.js"></script>
190190
```
191191

192192
OR, if you prefer to import it as an ES module:
@@ -237,7 +237,7 @@ Then include the script.
237237
```html
238238
<script
239239
async
240-
src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/lazyload.min.js"
240+
src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/lazyload.min.js"
241241
></script>
242242
```
243243

@@ -271,7 +271,7 @@ Then include the script.
271271
```html
272272
<script
273273
async
274-
src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/lazyload.min.js"
274+
src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/lazyload.min.js"
275275
></script>
276276
```
277277

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanilla-lazyload",
3-
"version": "19.0.4",
3+
"version": "19.0.5",
44
"description": "LazyLoad is a lightweight (2.4 kB) and flexible script that speeds up your web application by deferring the loading of your below-the-fold images, videos and iframes to when they will enter the viewport. It's written in plain \"vanilla\" JavaScript, it leverages the IntersectionObserver API, it supports responsive images, it optimizes your website for slower connections, and can enable native lazy loading.",
55
"main": "dist/lazyload.min.js",
66
"module": "dist/esm/lazyload.js",
@@ -25,13 +25,7 @@
2525
},
2626
"files": [
2727
"dist",
28-
"typings",
29-
".eslintrc.json",
30-
"LICENSE",
31-
"CHANGELOG.md",
32-
"CODE_OF_CONDUCT.md",
33-
"README.md",
34-
"package.json"
28+
"typings"
3529
],
3630
"repository": {
3731
"type": "git",

0 commit comments

Comments
 (0)