🐌 A small size Vue.js directive for lazy loading images using IntersectionObserver API

Overview

🐌 vue-tiny-lazyload-img

A small size Vue.js directive for lazy loading images using IntersectionObserver API

Travis License version downloads minified

Demo Page

https://mazipan.github.io/vue-tiny-lazyload-img/

Usage

Download

npm install vue-tiny-lazyload-img
// OR
yarn add intersection-observer

Install Plugin

import VueTinyLazyloadImg from 'vue-tiny-lazyload-img'
Vue.use(VueTinyLazyloadImg);

HTML Snippet

<img v-lazyload
  src="./assets/logo.png"
  data-src="./assets/logo-success.png"
  data-err="./assets/logo-error.png">

Please Use polyfill

This plugin using IntersectionObserver, so please use polyfill if you need support old browser

$ yarn add intersection-observer

// then add polyfill for IntersectionObserver in your main app
require('intersection-observer')
  • The easiest way to load the IntersectionObserver polyfill and have it work in the widest range of browsers is via polyfill.io, which will automatically include dependencies where necessary:
<script src="https://polyfill.io/v2/polyfill.min.js?features=IntersectionObserver"></script>

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production demo with minification
npm run build:demo

# build for plugin distribution file
npm run build:lib

Credit

Based on this awesome article: https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/


Copyright © 2018 Built with ❤️ by Irfan Maulana

Comments
  • Bump rollup-plugin-vue from 4.7.1 to 5.1.5

    Bump rollup-plugin-vue from 4.7.1 to 5.1.5

    Bumps rollup-plugin-vue from 4.7.1 to 5.1.5.

    Release notes

    Sourced from rollup-plugin-vue's releases.

    Version 5.0.0

    Chores

    • Upgrade @vue/component-compiler & @vue/component-compiler-utils (e215fe7)

    BREAKING CHANGES

    Version 4.7.2

    Bug Fixes

    • Add needMap option to disable source maps (3f879f3)
    Changelog

    Sourced from rollup-plugin-vue's changelog.

    5.1.5 (2020-01-06)

    5.1.4 (2019-11-21)

    Bug Fixes

    • use inline block language in part request (7434ea2)

    5.1.3 (2019-11-21)

    Bug Fixes

    • call transformer from whitelisted custom blocks (#310) (ab13f3b)

    5.1.2 (2019-10-27)

    Bug Fixes

    • use local runtime helpers for externalising vue-runtime-helpers (3b0b4de)

    5.1.1 (2019-10-26)

    Bug Fixes

    5.1.0 (2019-10-26)

    Features

    ... (truncated)
    Commits
    • 5f007ab chore(release): 5.1.5
    • daeb0c7 chore: Restore CHANGELOG.md
    • 2babec6 Revert "fix: use local runtime helpers for externalising vue-runtime-helpers"
    • 0db705f Revert "chore(release): 5.1.2"
    • 8335566 Revert "fix: call transformer from whitelisted custom blocks (#310)"
    • ddcd5fa Revert "chore(release): 5.1.3"
    • ce5f9f7 Revert "fix: use inline block language in part request"
    • 82a2a8e Revert "chore(release): 5.1.4"
    • 64d5140 chore(release): 5.1.4
    • 7434ea2 fix: use inline block language in part request
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump sass-loader from 7.1.0 to 8.0.1

    Bump sass-loader from 7.1.0 to 8.0.1

    Bumps sass-loader from 7.1.0 to 8.0.1.

    Release notes

    Sourced from sass-loader's releases.

    v8.0.1

    8.0.1 (2020-01-10)

    Bug Fixes

    v8.0.0

    ⚠ BREAKING CHANGES

    • minimum required webpack version is 4.36.0
    • minimum required node.js version is 8.9.0
    • move all sass (includePaths, importer, functions) options to the sassOptions option. The functions option can't be used as Function, you should use sassOption as Function to achieve this.
    • the data option was renamed to the prependData option
    • default value of the sourceMap option depends on the devtool value (eval/false values don't enable source map generation)

    Features

    • automatically use the fibers package if it is possible (#744) (96184e1)
    • source map generation depends on the devtool option (#743) (fcea88e)
    • validate loader options (#737) (7b543fc)
    • reworked error handling from node-sass/sass
    • improve resolution for @import (including support _index and index files in a directory)

    Bug Fixes

    • compatibility with pnp

    v7.3.1

    7.3.1 (2019-08-20)

    Bug Fixes

    • minimum node version in package.json (#733) (1175920)

    v7.3.0

    7.3.0 (2019-08-20)

    Bug Fixes

    Features

    ... (truncated)
    Changelog

    Sourced from sass-loader's changelog.

    8.0.1 (2020-01-10)

    Bug Fixes

    8.0.0 (2019-08-29)

    ⚠ BREAKING CHANGES

    • minimum required webpack version is 4.36.0
    • minimum required node.js version is 8.9.0
    • move all sass (includePaths, importer, functions, outputStyle) options to the sassOptions option. The functions option can't be used as Function, you should use sassOption as Function to achieve this.
    • the data option was renamed to the prependData option
    • default value of the sourceMap option depends on the devtool value (eval/false values don't enable source map generation)

    Features

    • automatically use the fibers package if it is possible (#744) (96184e1)
    • source map generation depends on the devtool option (#743) (fcea88e)
    • validate loader options (#737) (7b543fc)
    • reworked error handling from node-sass/sass
    • improve resolution for @import (including support _index and index files in a directory)

    Bug Fixes

    • compatibility with pnp

    7.3.1 (2019-08-20)

    Bug Fixes

    • minimum node version in package.json (#733) (1175920)

    7.3.0 (2019-08-20)

    Bug Fixes

    Features

    ... (truncated)
    Commits
    Maintainer changes

    This version was pushed to npm by evilebottnawi, a new releaser for sass-loader since your current version.


    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump css-loader from 2.1.0 to 3.4.1

    Bump css-loader from 2.1.0 to 3.4.1

    Bumps css-loader from 2.1.0 to 3.4.1.

    Release notes

    Sourced from css-loader's releases.

    v3.4.1

    3.4.1 (2020-01-03)

    Bug Fixes

    • do not output undefined when sourceRoot is unavailable (#1036) (ded2a79)
    • don't output invalid es5 code when locals do not exists (#1035) (b60e62a)

    v3.4.0

    3.4.0 (2019-12-17)

    Features

    Bug Fixes

    • logic for order and media queries for imports (#1018) (65450d9)

    v3.3.2

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    v3.3.1

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    v3.3.0

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    ... (truncated)
    Changelog

    Sourced from css-loader's changelog.

    3.4.1 (2020-01-03)

    Bug Fixes

    • do not output undefined when sourceRoot is unavailable (#1036) (ded2a79)
    • don't output invalid es5 code when locals do not exists (#1035) (b60e62a)

    3.4.0 (2019-12-17)

    Features

    Bug Fixes

    • logic for order and media queries for imports (#1018) (65450d9)

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    3.2.1 (2019-12-02)

    ... (truncated)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump css-loader from 2.1.0 to 3.4.0

    Bump css-loader from 2.1.0 to 3.4.0

    Bumps css-loader from 2.1.0 to 3.4.0.

    Release notes

    Sourced from css-loader's releases.

    v3.4.0

    3.4.0 (2019-12-17)

    Features

    Bug Fixes

    • logic for order and media queries for imports (#1018) (65450d9)

    v3.3.2

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    v3.3.1

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    v3.3.0

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    v3.2.1

    3.2.1 (2019-12-02)

    Bug Fixes

    ... (truncated)
    Changelog

    Sourced from css-loader's changelog.

    3.4.0 (2019-12-17)

    Features

    Bug Fixes

    • logic for order and media queries for imports (#1018) (65450d9)

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    3.2.1 (2019-12-02)

    Bug Fixes

    • add an additional space after the escape sequence (#998) (0961304)
    • compatibility with ES modules syntax and hash in url function (#1001) (8f4d6f5)

    3.2.0 (2019-08-06)

    ... (truncated)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump compression-webpack-plugin from 2.0.0 to 3.0.1

    Bump compression-webpack-plugin from 2.0.0 to 3.0.1

    Bumps compression-webpack-plugin from 2.0.0 to 3.0.1.

    Release notes

    Sourced from compression-webpack-plugin's releases.

    v3.0.1

    3.0.1 (2019-12-09)

    SECURITY

    • update serialize-javascript to 2.1.1 version.

    v3.0.0

    3.0.0 (2019-06-05)

    chore

    Tests

    BREAKING CHANGES

    • deps: minimum required nodejs version is 8.9.0
    Changelog

    Sourced from compression-webpack-plugin's changelog.

    3.0.1 (2019-12-09)

    SECURITY

    • update serialize-javascript to 2.1.1 version.

    3.0.0 (2019-06-05)

    chore

    Tests

    BREAKING CHANGES

    • deps: minimum required nodejs version is 8.9.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump css-loader from 2.1.0 to 3.3.2

    Bump css-loader from 2.1.0 to 3.3.2

    Bumps css-loader from 2.1.0 to 3.3.2.

    Release notes

    Sourced from css-loader's releases.

    v3.3.2

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    v3.3.1

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    v3.3.0

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    v3.2.1

    3.2.1 (2019-12-02)

    Bug Fixes

    • add an additional space after the escape sequence (#998) (0961304)
    • compatibility with ES modules syntax and hash in url function (#1001) (8f4d6f5)

    v3.2.0

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)
    ... (truncated)
    Changelog

    Sourced from css-loader's changelog.

    3.3.2 (2019-12-12)

    Bug Fixes

    • logic for order and media queries for imports (1fb5134)

    3.3.1 (2019-12-12)

    Bug Fixes

    • better handling url functions and an url in @import at-rules
    • reduce count of require (#1014) (e091d27)

    3.3.0 (2019-12-09)

    Features

    Bug Fixes

    3.2.1 (2019-12-02)

    Bug Fixes

    • add an additional space after the escape sequence (#998) (0961304)
    • compatibility with ES modules syntax and hash in url function (#1001) (8f4d6f5)

    3.2.0 (2019-08-06)

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)

    3.1.0 (2019-07-18)

    ... (truncated)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump css-loader from 2.1.0 to 3.2.1

    Bump css-loader from 2.1.0 to 3.2.1

    Bumps css-loader from 2.1.0 to 3.2.1.

    Release notes

    Sourced from css-loader's releases.

    v3.2.1

    3.2.1 (2019-12-02)

    Bug Fixes

    • add an additional space after the escape sequence (#998) (0961304)
    • compatibility with ES modules syntax and hash in url function (#1001) (8f4d6f5)

    v3.2.0

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)

    v3.1.0

    3.1.0 (2019-07-18)

    Bug Fixes

    • converting all (including reserved and control) filesystem characters to - (it was regression in 3.0.0 version) (#972) (f51859b)
    • default context should be undefined instead of null (#965) (9c32885)

    Features

    • allow modules.getLocalIdent to return a falsy value (#963) (9c3571c)
    • improved validation error messages (65e4fc0)

    v3.0.0

    3.0.0 (2019-06-11)

    Bug Fixes

    • avoid the "from" argument must be of type string error (#908) (e5dfd23)
    • invert Function behavior for url and import options (#939) (e9eb5ad)
    • properly export locals with escaped characters (#917) (a0efcda)
    • property handle non css characters in localIdentName (#920) (d3a0a3c)

    Features

    • modules options now accepts object config (#937) (1d7a464)
    • support @value at-rule in selectors (#941) (05a42e2)
    ... (truncated)
    Changelog

    Sourced from css-loader's changelog.

    3.2.1 (2019-12-02)

    Bug Fixes

    • add an additional space after the escape sequence (#998) (0961304)
    • compatibility with ES modules syntax and hash in url function (#1001) (8f4d6f5)

    3.2.0 (2019-08-06)

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)

    3.1.0 (2019-07-18)

    Bug Fixes

    • converting all (including reserved and control) filesystem characters to - (it was regression in 3.0.0 version) (#972) (f51859b)
    • default context should be undefined instead of null (#965) (9c32885)

    Features

    • allow modules.getLocalIdent to return a falsy value (#963) (9c3571c)
    • improved validation error messages (65e4fc0)

    3.0.0 (2019-06-11)

    Bug Fixes

    • avoid the "from" argument must be of type string error (#908) (e5dfd23)
    • invert Function behavior for url and import options (#939) (e9eb5ad)
    • properly export locals with escaped characters (#917) (a0efcda)
    • property handle non css characters in localIdentName (#920) (d3a0a3c)

    Features

    • modules options now accepts object config (#937) (1d7a464)
    ... (truncated)
    Commits
    • 77e705c chore(release): 3.2.1
    • 8f4d6f5 fix: compatibility with ES modules syntax and hash in url function (#1001)
    • e21ab00 docs(readme): update default values for options (#1000)
    • 0961304 fix: add an additional space after the escape sequence (#998)
    • 94378b7 test: module concatenation plugin (#996)
    • cb434bf refactor: code
    • 39f18f8 chore(release): 3.2.0
    • 9c5126c feat: support es modules for assets loader (#984)
    • 2ac79c3 docs: example with CSS modules and pure CSS (#983)
    • 967fb66 fix: replace . characters in localIndent to - character (regression) (#982)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump rollup-plugin-vue from 4.7.1 to 5.1.4

    Bump rollup-plugin-vue from 4.7.1 to 5.1.4

    Bumps rollup-plugin-vue from 4.7.1 to 5.1.4.

    Release notes

    Sourced from rollup-plugin-vue's releases.

    Version 5.0.0

    Chores

    BREAKING CHANGES

    Version 4.7.2

    Bug Fixes

    • Add needMap option to disable source maps (3f879f3)
    Changelog

    Sourced from rollup-plugin-vue's changelog.

    5.1.4 (2019-11-21)

    Bug Fixes

    • use inline block language in part request (7434ea2)

    5.1.3 (2019-11-21)

    Bug Fixes

    • call transformer from whitelisted custom blocks (#310) (ab13f3b)

    5.1.2 (2019-10-27)

    Bug Fixes

    • use local runtime helpers for externalising vue-runtime-helpers (3b0b4de)

    5.1.1 (2019-10-26)

    Bug Fixes

    5.1.0 (2019-10-26)

    Features

    • Add support for shadow DOM style injection (9a0e7cf)

    ... (truncated)
    Commits
    • 64d5140 chore(release): 5.1.4
    • 7434ea2 fix: use inline block language in part request
    • 77aadb7 chore(release): 5.1.3
    • ab13f3b fix: call transformer from whitelisted custom blocks (#310)
    • a983704 chore(release): 5.1.2
    • 3b0b4de fix: use local runtime helpers for externalising vue-runtime-helpers
    • 0bc9d30 chore(release): 5.1.1
    • 7b848ee fix: typo in option name
    • 9e70638 chore: code style
    • cdb8387 chore(release): 5.1.0
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump css-loader from 2.1.0 to 3.2.0

    Bump css-loader from 2.1.0 to 3.2.0

    Bumps css-loader from 2.1.0 to 3.2.0.

    Release notes

    Sourced from css-loader's releases.

    v3.2.0

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)

    v3.1.0

    3.1.0 (2019-07-18)

    Bug Fixes

    • converting all (including reserved and control) filesystem characters to - (it was regression in 3.0.0 version) (#972) (f51859b)
    • default context should be undefined instead of null (#965) (9c32885)

    Features

    • allow modules.getLocalIdent to return a falsy value (#963) (9c3571c)
    • improved validation error messages (65e4fc0)

    v3.0.0

    3.0.0 (2019-06-11)

    Bug Fixes

    • avoid the "from" argument must be of type string error (#908) (e5dfd23)
    • invert Function behavior for url and import options (#939) (e9eb5ad)
    • properly export locals with escaped characters (#917) (a0efcda)
    • property handle non css characters in localIdentName (#920) (d3a0a3c)

    Features

    • modules options now accepts object config (#937) (1d7a464)
    • support @value at-rule in selectors (#941) (05a42e2)

    BREAKING CHANGES

    • minimum required nodejs version is 8.9.0
    • @value at rules now support in selector, recommends checking all @values at-rule usage (hint: you can add prefix to all @value at-rules, for example @value v-foo: black; or @value m-foo: screen and (max-width: 12450px), and then do upgrade)
    • invert {Function} behavior for url and import options (need return true when you want handle url/@import and return false if not)
    • exportLocalsStyle option was remove in favor localsConvention option, also it is accept only {String} value (use camelCase value if you previously value was true and asIs if you previously value was false)
    • exportOnlyLocals option was remove in favor onlyLocals option
    ... (truncated)
    Changelog

    Sourced from css-loader's changelog.

    3.2.0 (2019-08-06)

    Bug Fixes

    • replace . characters in localIndent to - character (regression) (#982) (967fb66)

    Features

    • support es modules for assets loader (#984) (9c5126c)

    3.1.0 (2019-07-18)

    Bug Fixes

    • converting all (including reserved and control) filesystem characters to - (it was regression in 3.0.0 version) (#972) (f51859b)
    • default context should be undefined instead of null (#965) (9c32885)

    Features

    • allow modules.getLocalIdent to return a falsy value (#963) (9c3571c)
    • improved validation error messages (65e4fc0)

    3.0.0 (2019-06-11)

    Bug Fixes

    • avoid the "from" argument must be of type string error (#908) (e5dfd23)
    • invert Function behavior for url and import options (#939) (e9eb5ad)
    • properly export locals with escaped characters (#917) (a0efcda)
    • property handle non css characters in localIdentName (#920) (d3a0a3c)

    Features

    • modules options now accepts object config (#937) (1d7a464)
    • support @value at-rule in selectors (#941) (05a42e2)

    BREAKING CHANGES

    • minimum required nodejs version is 8.9.0
    • @value at rules now support in selector, recommends checking all @values at-rule usage (hint: you can add prefix to all @value at-rules, for example @value v-foo: black; or @value m-foo: screen and (max-width: 12450px), and then do upgrade)
    • invert {Function} behavior for url and import options (need return true when you want handle url/@import and return false if not)
    ... (truncated)
    Commits
    • 39f18f8 chore(release): 3.2.0
    • 9c5126c feat: support es modules for assets loader (#984)
    • 2ac79c3 docs: example with CSS modules and pure CSS (#983)
    • 967fb66 fix: replace . characters in localIndent to - character (regression) (#982)
    • 036b5f1 docs: fix camelCase reference in 3.0 changelog (#979)
    • 926ebbd chore(release): 3.1.0
    • 5d2c52e test: escaped in selectors (#973)
    • f51859b fix: converting reserved and control filesystem characters to - (#972)
    • 65e4fc0 feat: improved validation error messages
    • 9c32885 fix: default context should be undefined instead of null (#965)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump eslint-plugin-vue from 5.2.3 to 6.0.1

    Bump eslint-plugin-vue from 5.2.3 to 6.0.1

    Bumps eslint-plugin-vue from 5.2.3 to 6.0.1.

    Release notes

    Sourced from eslint-plugin-vue's releases.

    v6.0.1

    🐛 Bug Fixes

    • #984 Fixed an issue where the message "requires a peer of eslint@^5.0.0" was reported when installing the eslint-plugin-vue.

    v6.0.0

    💥 Breaking Changes

    • #979 Dropped support for Node.js 6.x, ESLint 5.x.
    • #940 Dropped autofix of vue/prop-name-casing.
    • #823 Added Nuxt properties to the default order of vue/order-in-components.
    • #895 #807 Upgrade to vue-eslint-parser@6.0.4

    ✨ Enhancements

    Core:

    • #807 Support new syntax in Vue.js 2.6.
    • #979 Added support for ESLint 6.x.

    New Rules:

    • #798 Added vue/no-empty-pattern rule applies no-empty-pattern rule to expressions in \<template>.
    • #794 Added vue/dot-location rule applies dot-location rule to expressions in \<template>.
    • #795 Added vue/keyword-spacing rule applies keyword-spacing rule to expressions in \<template>.
    • #838 Added vue/no-deprecated-scope-attribute rule that reports deprecated scope attribute in Vue.js v2.5.0+.
    • #837 Added vue/valid-v-slot rule that checks whether every v-slot directive is valid.
    • #836 Added vue/v-slot-style rule that enforces v-slot directive style which you should use shorthand or long form.

    🐛 Bug Fixes

    • #904 Fixed vue/use-v-on-exact to allows events with different key codes
    • #937 Fixed typo in vue/valid-v-else rule message

    All commits: v5.2.3 -> v6.0.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump copy-webpack-plugin from 4.6.0 to 5.0.5

    Bump copy-webpack-plugin from 4.6.0 to 5.0.5

    Bumps copy-webpack-plugin from 4.6.0 to 5.0.5.

    Release notes

    Sourced from copy-webpack-plugin's releases.

    v5.0.5

    5.0.5 (2019-11-06)

    Performance Improvements

    v5.0.4

    5.0.4 (2019-07-26)

    Bug Fixes

    • use posix separator for emitting assets (#392) (7f08be6)

    v5.0.3

    5.0.3 (2019-04-24)

    Bug Fixes

    • alone [N] interpolation in to option (#375) (70917b7)

    v5.0.2

    5.0.2 (2019-03-22)

    Bug Fixes

    Performance Improvements

    v5.0.1

    5.0.1 (2019-03-11)

    Bug Fixes

    • respect base of glob for context dependencies (#352) (5b407f1)
    ... (truncated)
    Changelog

    Sourced from copy-webpack-plugin's changelog.

    5.0.5 (2019-11-06)

    Performance Improvements

    5.0.4 (2019-07-26)

    Bug Fixes

    • use posix separator for emitting assets (#392) (7f08be6)

    5.0.3 (2019-04-24)

    Bug Fixes

    • alone [N] interpolation in to option (#375) (70917b7)

    5.0.2 (2019-03-22)

    Bug Fixes

    Performance Improvements

    5.0.1 (2019-03-11)

    ... (truncated)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will not automatically merge this PR because it includes a major update to a development dependency.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 2
  • Bump dns-packet from 1.3.1 to 1.3.4

    Bump dns-packet from 1.3.1 to 1.3.4

    Bumps dns-packet from 1.3.1 to 1.3.4.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
  • Bump browserslist from 4.8.0 to 4.16.6

    Bump browserslist from 4.8.0 to 4.16.6

    Bumps browserslist from 4.8.0 to 4.16.6.

    Changelog

    Sourced from browserslist's changelog.

    4.16.6

    • Fixed npm-shrinkwrap.json support in --update-db (by Geoff Newman).

    4.16.5

    • Fixed unsafe RegExp (by Yeting Li).

    4.16.4

    • Fixed unsafe RegExp.
    • Added artifactory support to --update-db (by Ittai Baratz).

    4.16.3

    • Fixed --update-db.

    4.16.2

    4.16.1

    • Fixed Chrome 4 with mobileToDesktop (by Aron Woost).

    4.16

    • Add browserslist config query.

    4.15

    • Add TypeScript types (by Dmitry Semigradsky).

    4.14.7

    • Fixed Yarn Workspaces support to --update-db (by Fausto Núñez Alberro).
    • Added browser changes to --update-db (by @​AleksandrSl).
    • Added color output to --update-db.
    • Updated package.funding to have link to our Open Collective.

    4.14.6

    • Fixed Yarn support in --update-db (by Ivan Storck).
    • Fixed npm 7 support in --update-db.

    4.14.5

    • Fixed last 2 electron versions query (by Sergey Melyukov).

    4.14.4

    • Fixed Unknown version 59 of op_mob error.

    4.14.3

    • Update Firefox ESR.

    4.14.2

    • Fixed --update-db on Windows (by James Ross).
    • Improved --update-db output.

    4.14.1

    • Added --update-db explanation (by Justin Zelinsky).

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
  • Bump url-parse from 1.4.4 to 1.5.1

    Bump url-parse from 1.4.4 to 1.5.1

    Bumps url-parse from 1.4.4 to 1.5.1.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
  • Bump handlebars from 4.5.3 to 4.7.7

    Bump handlebars from 4.5.3 to 4.7.7

    Bumps handlebars from 4.5.3 to 4.7.7.

    Changelog

    Sourced from handlebars's changelog.

    v4.7.7 - February 15th, 2021

    • fix weird error in integration tests - eb860c0
    • fix: check prototype property access in strict-mode (#1736) - b6d3de7
    • fix: escape property names in compat mode (#1736) - f058970
    • refactor: In spec tests, use expectTemplate over equals and shouldThrow (#1683) - 77825f8
    • chore: start testing on Node.js 12 and 13 - 3789a30

    (POSSIBLY) BREAKING CHANGES:

    • the changes from version 4.6.0 now also apply in when using the compile-option "strict: true". Access to prototype properties is forbidden completely by default, specific properties or methods can be allowed via runtime-options. See #1633 for details. If you are using Handlebars as documented, you should not be accessing prototype properties from your template anyway, so the changes should not be a problem for you. Only the use of undocumented features can break your build.

    That is why we only bump the patch version despite mentioning breaking changes.

    Commits

    v4.7.6 - April 3rd, 2020

    Chore/Housekeeping:

    Compatibility notes:

    • Restored Node.js compatibility

    Commits

    v4.7.5 - April 2nd, 2020

    Chore/Housekeeping:

    • Node.js version support has been changed to v6+ Reverted in 4.7.6

    Compatibility notes:

    • Node.js < v6 is no longer supported Reverted in 4.7.6

    Commits

    v4.7.4 - April 1st, 2020

    Chore/Housekeeping:

    Compatibility notes:

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
  • Bump elliptic from 6.5.3 to 6.5.4

    Bump elliptic from 6.5.3 to 6.5.4

    Bumps elliptic from 6.5.3 to 6.5.4.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
  • Support for SRCSET

    Support for SRCSET

    Does this package support srcset?

    By the way, good job, around 10-15 times smaller than lazysizes - it has more features of course, but still.

    Before I can migrate I need support for srcset as well as background-urls, not sure if it's supported or not.

    enhancement 
    opened by simplenotezy 1
Owner
Irfan Maulana
💆‍♂️ Cuma tukang review kode
Irfan Maulana
simplistic vue.js directive for image lazy loading

Vue Progressive Image Lazy load images while showing a preview. Super tiny, less than half a kilobyte minified and gzipped. usage v-lazy-img adds the

Norman 25 Aug 11, 2021
A Vue lazy loading directive.

A Vue lazy loading directive.

Vue Interface 0 Dec 9, 2022
A Vue.js component to lazy load images using the Intersection Observer.

vue-li-image A Vue.js component to lazy load an image automatically when it enters the viewport using the Intersection Observer API.

null 0 Mar 19, 2021
A simple lazy-load list component based Vue 2.x: https://dwqs.github.io/v2-lazy-list/

v2-lazy-list A simple lazy-load list component based Vue 2.x, which will be on-demand rendering the list based container element's viewport. v1.x is n

Pomy 31 Nov 18, 2020
A small lazy image loader for Vue

lazy-vue lazy-vue is the easiest way to get a lazy image loader working within your vue projects. It is meant to be as simplest as possible, so you do

Gustavo Ocanto 63 Jul 19, 2022
Lazy load background images for Vue 2

Lazy Background Images for Vue vue-lazy-background-images A simple Vue component for lazy loading background components. This component is only for ba

Darryn Ten 67 Nov 24, 2022
Component-based lazy (CLazy) load images in Vue.js 2

Vue Clazy Load Claziest lazy loader out there! Component-based image lazy loader for Vue.js 2 Swaps between your image and another component when load

Matheus Grieger 107 Nov 16, 2022
Vue.js Image Kit Component with Lazy Load built in and Responsive Images

Vue Image Kit Vue.js Image Kit Component with Lazy Load built in and Responsive Images The inspiration comes from this and a talk from @derevandal in

Igor Guastalla 9 Mar 31, 2022
A plugin of lazy-load images for Vue2.x

vue-lazyload-images A plugin of lazy-load images for Vue2.x Support images lazyload in window or build-in element. Demo Installation npm $ npm install

LowesYang 61 Nov 19, 2022
Flexible modal component for Vue with ability of asynchronous lazy loading

vue-async-modal Flexible modal component for Vue with ability of asynchronous lazy loading Usage Firstly, you should add Modal component in your templ

JounQin 37 Nov 14, 2022
A vue component for sleek and optimal lazy loading

sloth-loader ?? Image Lazy loader Vue Component with intersection observer Example here Installation yarn add sloth-loader npm i sloth-loader import c

Kenny Krosky 0 Oct 21, 2021
Vue.js lazy load image directive with akamai image converter

vue-lazyload-akamai Vue.js lazy load image directive with akamai image converter ??

Blibli.com 2 Aug 13, 2018
:camera: Mini Image Lazy Loader for P(R)eact and Vue

Pimg is a Progessive Image Component For React, Preact and Vue.js. It helps in lazy loading of images in a nice and cool way. It's 2KB (gzipped). It h

Ademola. 99 Oct 27, 2022
A super simple image lazy loader for Vue.

cube-vue-image-lazy A super simple image lazy loader for Vue. Install yarn add cube-vue-image-lazy Warning: You'll need to install the w3c Intersectio

Cube 4 Nov 15, 2022
A Lazy load plugin for Vue 3.x

vue3-lazy Status: Alpha. Lazy load plugin for Vue 3.x inspired by vue-lazyload. This plugin support very simple options, and easy to use. Install $ np

null 2 Feb 8, 2022
vue lazy container,By detect the visibility of elements in the page, decide whether to load resources and render.

vue lazy container,By detect the visibility of elements in the page, decide whether to load resources and render.

null 5 Sep 25, 2022
simple calculation lib with lazy feature 🎲➕➖➗✖️

vue-lazy-calc this is a simple calculation plugin in lazy way. (inspired by lodash) features vue friendly strong typed lazy evaluation chaining method

Vincent Guo 8 Jul 30, 2020
A lightweight web package that loads items in lazy way to achieve high performance and better UX in large lists

Lazy Load List Lazy Load List is a lightweight web package that loads items in lazy way to achieve high performance and better UX in large lists. Rend

OMER ANWAR 22 Dec 26, 2022
Create lazy image, embed, video and element with animation just with attributes.

?? Lazy-attr v1.2.3 Create lazy loading request or element like image, iframe, video... Make custom animation on lazy and not lazy element on all brow

null 1 Jan 4, 2022