Progress bars and loading indicators for Vue.js

Overview

vue-progress-path

npm npm vue2

Progress bars and loading indicators that can take any form!

This library is Work In Progress.

Live Demo

Become a Patreon

Sponsors

Gold

sum.cumo logo

Silver

VueSchool logo Vue Mastery logo

Bronze

Installation

npm i -S vue-progress-path
yarn add vue-progress-path

Usage

import 'vue-progress-path/dist/vue-progress-path.css'
import VueProgress from 'vue-progress-path'

Vue.use(VueProgress, {
  // defaultShape: 'circle',
})

You can now use the <loading-progress> component.

CSS customization example

You can customize the progress components with CSS:

.vue-progress-path path {
  stroke-width: 12;
}

.vue-progress-path .progress {
  stroke: red;
}

.vue-progress-path .background {
  stroke: #edd;
}

Examples

Google Material Design-like spinner:

<loading-progress
  :progress="progress"
  :indeterminate="indeterminate"
  :counter-clockwise="counterClockwise"
  :hide-background="hideBackground"
  size="64"
  rotate
  fillDuration="2"
  rotationDuration="1"
/>

Semi-circle:

<loading-progress
  :progress="progress"
  :indeterminate="indeterminate"
  :counter-clockwise="counterClockwise"
  :hide-background="hideBackground"
  shape="semicircle"
  size="64"
/>

Custom SVG path:

<loading-progress
  :progress="progress"
  :indeterminate="indeterminate"
  :counter-clockwise="counterClockwise"
  :hide-background="hideBackground"
  shape="M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80"
  size="180"
  fill-duration="2"
/>
Comments
  • [security] chore(deps-dev): bump clean-css from 4.1.9 to 4.2.3

    [security] chore(deps-dev): bump clean-css from 4.1.9 to 4.2.3

    Bumps clean-css from 4.1.9 to 4.2.3.

    Changelog

    Sourced from clean-css's changelog.

    4.2.2 / 2020-01-25

    • Fixed error when property block has no value.
    • Fixed issue #1077 - local fonts with color in name.
    • Fixed issue #1082 - correctly convert colors if alpha >= 1.
    • Fixed issue #1085 - prevent unquoting of grid elements.

    4.2.1 / 2018-08-07

    • Fixes giving breakWith option via a string.

    4.2.0 / 2018-08-02

    • Adds process method for compatibility with optimize-css-assets-webpack-plugin.
    • Fixed issue #861 - new transition property optimizer.
    • Fixed issue #895 - ignoring specific styles.
    • Fixed issue #947 - selector based filtering.
    • Fixed issue #964 - adds configurable line breaks.
    • Fixed issue #986 - level 2 optimizations and CSS 4 colors.
    • Fixed issue #1000 - carriage return handling in tokenizer.
    • Fixed issue #1038 - font-variation-settings quoting.
    • Fixes ReDOS vulnerabilities in validator code.

    4.1.11 / 2018-03-06

    • Backports fixes to ReDOS vulnerabilities in validator code.

    4.1.10 / 2018-03-05

    • Fixed issue #988 - edge case in dropping default animation-duration.
    • Fixed issue #989 - edge case in removing unused at rules.
    • Fixed issue #1001 - corrupted tokenizer state.
    • Fixed issue #1006 - edge case in handling invalid source maps.
    • Fixed issue #1008 - edge case in breaking up font shorthand.
    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
    • @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 security 
    opened by dependabot-preview[bot] 2
  • chore(deps-dev): bump rollup from 0.50.0 to 2.55.0

    chore(deps-dev): bump rollup from 0.50.0 to 2.55.0

    Bumps rollup from 0.50.0 to 2.55.0.

    Release notes

    Sourced from rollup's releases.

    v2.55.0

    2021-07-28

    Features

    • Support default export live-bindings when generating ESM output (#4182)

    Bug Fixes

    • Always write ["default"] as computed property when used as named export (#4182)
    • Do not mask default export TDZ errors (#4182)

    v2.54.0

    2021-07-25

    Features

    • Extend UMD import.meta.url polyfill to support web workers (#4186)

    Bug Fixes

    • Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)

    Pull Requests

    v2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    v2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    v2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.55.0

    2021-07-28

    Features

    • Support default export live-bindings when generating ESM output (#4182)

    Bug Fixes

    • Always write ["default"] as computed property when used as named export (#4182)
    • Do not mask default export TDZ errors (#4182)

    Pull Requests

    2.54.0

    2021-07-25

    Features

    • Extend UMD import.meta.url polyfill to support web workers (#4186)

    Bug Fixes

    • Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)

    Pull Requests

    2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    2.53.1

    2021-07-11

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.54.0

    chore(deps-dev): bump rollup from 0.50.0 to 2.54.0

    Bumps rollup from 0.50.0 to 2.54.0.

    Release notes

    Sourced from rollup's releases.

    v2.54.0

    2021-07-25

    Features

    • Extend UMD import.meta.url polyfill to support web workers (#4186)

    Bug Fixes

    • Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)

    Pull Requests

    v2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    v2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    v2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    v2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.54.0

    2021-07-25

    Features

    • Extend UMD import.meta.url polyfill to support web workers (#4186)

    Bug Fixes

    • Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)

    Pull Requests

    2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.53.3

    chore(deps-dev): bump rollup from 0.50.0 to 2.53.3

    Bumps rollup from 0.50.0 to 2.53.3.

    Release notes

    Sourced from rollup's releases.

    v2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    v2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    v2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    v2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    v2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    v2.52.7

    2021-07-02

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.53.3

    2021-07-21

    Bug Fixes

    • Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)

    Pull Requests

    2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    2.52.7

    2021-07-02

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.53.2

    chore(deps-dev): bump rollup from 0.50.0 to 2.53.2

    Bumps rollup from 0.50.0 to 2.53.2.

    Release notes

    Sourced from rollup's releases.

    v2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    v2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    v2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    v2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    v2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    v2.52.6

    2021-07-01

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.53.2

    2021-07-15

    Bug Fixes

    • Identify additional TDZ situations in functions that are run more than once (#4177)
    • Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)

    Pull Requests

    2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    2.52.6

    2021-07-01

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.53.1

    chore(deps-dev): bump rollup from 0.50.0 to 2.53.1

    Bumps rollup from 0.50.0 to 2.53.1.

    Release notes

    Sourced from rollup's releases.

    v2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    v2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    v2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    v2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    v2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    v2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.53.1

    2021-07-11

    Bug Fixes

    • Do not omit namespace reexports when treeshake is false (#4175)

    Pull Requests

    2.53.0

    2021-07-09

    Features

    • Add maxParallelFileReads option to limit read operations with a default of 20 (#4170)

    Pull Requests

    • #4170: Limit parallel file reads to prevent "EMFILE: too many open files" error (@​schummar)

    2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.52.8

    chore(deps-dev): bump rollup from 0.50.0 to 2.52.8

    Bumps rollup from 0.50.0 to 2.52.8.

    Release notes

    Sourced from rollup's releases.

    v2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    v2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    v2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    v2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    Pull Requests

    v2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    v2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.52.8

    2021-07-07

    Bug Fixes

    • Automatically handle many use var before declaration and TDZ access scenarios correctly without the need for treeshake.correctVarValueBeforeDeclaration (#4148)

    Pull Requests

    2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    Pull Requests

    2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.52.7

    chore(deps-dev): bump rollup from 0.50.0 to 2.52.7

    Bumps rollup from 0.50.0 to 2.52.7.

    Release notes

    Sourced from rollup's releases.

    v2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    v2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    v2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    Pull Requests

    v2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    v2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    v2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.52.7

    2021-07-02

    Bug Fixes

    • Fix an issue where reassignments where not tracked through async function returns (#4163)

    Pull Requests

    2.52.6

    2021-07-01

    Bug Fixes

    • Fix an issue where reassignments where not tracked through an await expression (#4162)

    Pull Requests

    2.52.5

    2021-07-01

    Bug Fixes

    • Properly display parser errors not tied to a code location (#4160)

    Pull Requests

    2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.52.4

    chore(deps-dev): bump rollup from 0.50.0 to 2.52.4

    Bumps rollup from 0.50.0 to 2.52.4.

    Release notes

    Sourced from rollup's releases.

    v2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    v2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    v2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)
    • Do not require return value in renderChunkHook type (#4144)

    Pull Requests

    v2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    v2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.52.4

    2021-06-30

    Bug Fixes

    • Fix an error when external namespaces are reexported across several files (#4159)

    Pull Requests

    2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)
    • Do not require return value in renderChunkHook type (#4144)

    Pull Requests

    2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.52.3

    chore(deps-dev): bump rollup from 0.50.0 to 2.52.3

    Bumps rollup from 0.50.0 to 2.52.3.

    Release notes

    Sourced from rollup's releases.

    v2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    v2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)
    • Do not require return value in renderChunkHook type (#4144)

    Pull Requests

    v2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    v2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    v2.51.2

    2021-06-11

    Bug Fixes

    • Include modules imported from no-treeshake modules even if they would be empty (#4138)

    Pull Requests

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.52.3

    2021-06-25

    Bug Fixes

    • Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)

    Pull Requests

    2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)
    • Do not require return value in renderChunkHook type (#4144)

    Pull Requests

    2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    2.51.2

    2021-06-11

    Bug Fixes

    • Include modules imported from no-treeshake modules even if they would be empty (#4138)

    Pull Requests

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps-dev): bump rollup from 0.50.0 to 2.52.2

    chore(deps-dev): bump rollup from 0.50.0 to 2.52.2

    Bumps rollup from 0.50.0 to 2.52.2.

    Release notes

    Sourced from rollup's releases.

    v2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    v2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    v2.51.2

    2021-06-11

    Bug Fixes

    • Include modules imported from no-treeshake modules even if they would be empty (#4138)

    Pull Requests

    v2.51.1

    2021-06-08

    Bug Fixes

    • Fix error when using defineConfig (#4134)

    Pull Requests

    v2.51.0

    2021-06-06

    Features

    • Add a helper for IntelliSense support in config files (#4127)

    Bug Fixes

    • Improve performance when generating source maps (#4122)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.52.2

    2021-06-21

    Bug Fixes

    • Support falsy plugins in types (#4144)
    • Do not require return value in renderChunkHook type (#4144)

    Pull Requests

    2.52.1

    2021-06-17

    Bug Fixes

    • Fix a memory leak in watch mode (#4142)

    Pull Requests

    2.52.0

    2021-06-16

    Features

    • Add --configPlugin CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
    • Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
    • Add treeshake.correctVarValueBeforeDeclaration option to deoptimize var declarations (#4139)

    Pull Requests

    2.51.2

    2021-06-11

    Bug Fixes

    • Include modules imported from no-treeshake modules even if they would be empty (#4138)

    Pull Requests

    2.51.1

    2021-06-08

    Bug Fixes

    • Fix error when using defineConfig (#4134)

    Pull Requests

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by lukastaegert, a new releaser for rollup 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 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] 1
  • chore(deps): bump qs from 6.4.0 to 6.4.1

    chore(deps): bump qs from 6.4.0 to 6.4.1

    Bumps qs from 6.4.0 to 6.4.1.

    Changelog

    Sourced from qs's changelog.

    6.4.1

    • [Fix] parse: ignore __proto__ keys (#428)
    • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
    • [Fix] use safer-buffer instead of Buffer constructor
    • [Fix] utils.merge: avoid a crash with a null target and an array source
    • [Fix] utils.merge`: avoid a crash with a null target and a truthy non-array source
    • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
    • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
    • [Fix] when parseArrays is false, properly handle keys ending in []
    • [Robustness] stringify: avoid relying on a global undefined (#427)
    • [Refactor] use cached Array.isArray
    • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
    • [readme] remove travis badge; add github actions/codecov badges; update URLs
    • [Docs] Clarify the need for "arrayLimit" option
    • [meta] fix README.md (#399)
    • [meta] Clean up license text so it’s properly detected as BSD-3-Clause
    • [meta] add FUNDING.yml
    • [actions] backport actions from main
    • [Tests] remove nonexistent tape option
    • [Dev Deps] backport from main
    Commits
    • 486aa46 v6.4.1
    • 727ef5d [Fix] parse: ignore __proto__ keys (#428)
    • cd1874e [Robustness] stringify: avoid relying on a global undefined (#427)
    • 45e987c [readme] remove travis badge; add github actions/codecov badges; update URLs
    • 90a3bce [meta] fix README.md (#399)
    • 9566d25 [Fix] fix for an impossible situation: when the formatter is called with a no...
    • 74227ef Clean up license text so it’s properly detected as BSD-3-Clause
    • 35dfb22 [actions] backport actions from main
    • 7d4670f [Dev Deps] backport from main
    • 0485440 [Fix] use safer-buffer instead of Buffer constructor
    • 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 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
  • chore(deps): bump express from 4.15.4 to 4.18.2 in /demo

    chore(deps): bump express from 4.15.4 to 4.18.2 in /demo

    Bumps express from 4.15.4 to 4.18.2.

    Release notes

    Sourced from express's releases.

    4.18.2

    4.18.1

    • Fix hanging on large stack of sync routes

    4.18.0

    ... (truncated)

    Changelog

    Sourced from express's changelog.

    4.18.2 / 2022-10-08

    4.18.1 / 2022-04-29

    • Fix hanging on large stack of sync routes

    4.18.0 / 2022-04-25

    ... (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
  • chore(deps): bump qs from 6.4.0 to 6.4.1 in /demo

    chore(deps): bump qs from 6.4.0 to 6.4.1 in /demo

    Bumps qs from 6.4.0 to 6.4.1.

    Changelog

    Sourced from qs's changelog.

    6.4.1

    • [Fix] parse: ignore __proto__ keys (#428)
    • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
    • [Fix] use safer-buffer instead of Buffer constructor
    • [Fix] utils.merge: avoid a crash with a null target and an array source
    • [Fix] utils.merge`: avoid a crash with a null target and a truthy non-array source
    • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
    • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
    • [Fix] when parseArrays is false, properly handle keys ending in []
    • [Robustness] stringify: avoid relying on a global undefined (#427)
    • [Refactor] use cached Array.isArray
    • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
    • [readme] remove travis badge; add github actions/codecov badges; update URLs
    • [Docs] Clarify the need for "arrayLimit" option
    • [meta] fix README.md (#399)
    • [meta] Clean up license text so it’s properly detected as BSD-3-Clause
    • [meta] add FUNDING.yml
    • [actions] backport actions from main
    • [Tests] remove nonexistent tape option
    • [Dev Deps] backport from main
    Commits
    • 486aa46 v6.4.1
    • 727ef5d [Fix] parse: ignore __proto__ keys (#428)
    • cd1874e [Robustness] stringify: avoid relying on a global undefined (#427)
    • 45e987c [readme] remove travis badge; add github actions/codecov badges; update URLs
    • 90a3bce [meta] fix README.md (#399)
    • 9566d25 [Fix] fix for an impossible situation: when the formatter is called with a no...
    • 74227ef Clean up license text so it’s properly detected as BSD-3-Clause
    • 35dfb22 [actions] backport actions from main
    • 7d4670f [Dev Deps] backport from main
    • 0485440 [Fix] use safer-buffer instead of Buffer constructor
    • 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 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
  • chore(deps): bump path-parse from 1.0.5 to 1.0.7 in /demo

    chore(deps): bump path-parse from 1.0.5 to 1.0.7 in /demo

    Bumps path-parse from 1.0.5 to 1.0.7.

    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
  • chore(deps): bump path-parse from 1.0.5 to 1.0.7

    chore(deps): bump path-parse from 1.0.5 to 1.0.7

    Bumps path-parse from 1.0.5 to 1.0.7.

    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
  • chore(deps): bump tar from 2.2.1 to 2.2.2 in /demo

    chore(deps): bump tar from 2.2.1 to 2.2.2 in /demo

    Bumps tar from 2.2.1 to 2.2.2.

    Commits
    • 523c5c7 2.2.2
    • 7ecef07 Bump fstream to fix hardlink overwriting vulnerability
    • 9fc84b9 Use {} for hardlink tracking instead of []
    • 15e59f1 Only track previously seen hardlinks
    • 4f85851 Ignore potentially unsafe files
    • See full diff 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 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
Owner
Guillaume Chau
Web & JavaScript enthusiast, @vuejs core team.
Guillaume Chau
🌀 A collection of loading indicators animated with CSS for VueJS

vue-spinkit A collection of loading indicators animated with CSS for VueJS Inspiration Spinkit css animated loading react-spinkit loaders.css DEMO Ins

Chanwit Piromplad 109 Dec 15, 2022
A text loading component for Vue.js. Uses SVG and javascript to animate a text loading with a gradient.

A text loading component for Vue.js. Uses SVG and javascript to animate a text loading with a gradient.

null 1 Aug 3, 2020
Vue-loading - Vue Placeholder loading Content With Image,Table,Status

Vue Loading Project setup npm install Compiles and hot-reloads for development

Vũ Đức Việt 5 Oct 20, 2022
SVG component to create placeholder loading, like Facebook cards loading.

SVG component to create placeholder loading, like Facebook cards loading.

EGOIST 2.9k Dec 30, 2022
Data loading animation component for VueJS, inspired by video games loading screens.

Data loading animation component for VueJS, inspired by video games loading screens.

null 0 Sep 1, 2020
Complex Loader and Progress Management for Vue/Vuex and Nuxt Applications

Multiple Process Loader Management for Vue and (optionally) Vuex. Read the Medium post "Managing Complex Waiting Experiences on Web UIs". Play with de

Fatih Kadir Akın 2k Jan 9, 2023
Vue-simple-loading: Fork styles from tobiasahlin/SpinKit and built it for vue

vue-simple-loading Thanks for tobiasahlin/SpinKit. The css3 animation is copied from it. All the things I do is built it as a vue component. This proj

Heath Yang 14 Dec 17, 2020
Lightweight Vue wrapper for Loaders.css, delightful and performance-focused pure css loading animations

Vue Loaders CSS Vue wrapper for Loaders.css, the delightful and performance-focused pure css loading animations Demo The live demo is available here:

DigiQode 7 Nov 27, 2022
Radial progress bar component for Vue.js

vue-radial-progress A radial progress bar component for Vue.js. Uses SVG and javascript to animate a radial progress bar with a gradient. Live Demo Re

Wyzant 470 Dec 19, 2022
:panda_face: A simple,progress bar for Vue.js

svg-progress-bar A simple,progress bar for Vue.js ?? online demo | ?? simple demo | ?? Chinese Document Browser support IE Firefox Chrome Safari iOS A

sos 113 Dec 22, 2022
Vuegister is a require hook for loading of the Vue.js single-file components (or *.vue files).

vuegister About Vuegister (a portmanteau for vue-register) is a require hook for loading of the Vue.js single-file components (or *.vue files). The ma

Aleksei Iatsiuk 13 Jun 9, 2022
A StealJS plugin for loading Vue.js Single File Components (.vue)

StealJS plugin for Vue.js Single File Components. Steal (StealJS) is a module loader with sane defaults. With the steal-vue plugin, Steal can bundle V

iCanJS 8 Apr 30, 2021
BlockUI for vue 2, similiar to jquery blockUI, can be used for loading screen.

vue-blockui BlockUI for vue 2, similiar to jquery blockUI, can be used for loading screen. Table of contents Installation Usage Demo Screens Installat

Jeff 57 Apr 6, 2022
Vue.js component for full screen loading indicator :cyclone:

Vue Loading Overlay Component Vue.js component for full screen loading indicator Demo or JSFiddle Installation # yarn yarn add vue-loading-overlay #

Ankur Kumar 1.1k Jan 3, 2023
⏳ Loading inside a container or full screen for Vue.js

vue-element-loading ⏳ Loading inside a container or full screen for Vue.js ?? Document & Demo Page Docs & Live demo Fully feature live demo ?? Install

Pongsatorn 319 Dec 27, 2022
a vue component about toy bricks of skeleton screen loading

tb-skeleton a vue component about toy bricks of skeleton screen loading install $ npm i tb-skeleton -s use npm import Vue from 'vue' import skelet

zhoulin 88 Dec 9, 2022
👇 Vue button with slideout loading indicator

vue-loading-button Straightforward Vue button with slideout loading indicator Props Prop Type Required Default Description loading boolean false false

William Lindvall 39 Dec 10, 2022
Youtube Like Loading Bar Component for Vue.js

vue-loading-bar Loading Bar Component for Vue.Js DEMO Need Vue 2 Version? Click Here... Intro Vue Loading Bar is a Youtube like loading bar component

Naufal Rabbani 140 Dec 18, 2022
Vue component to easily build (or use presets) SVG loading cards Facebook like.

Vue component to easily build (or use presets) SVG loading cards Facebook like.

Lucas Leandro 759 Nov 29, 2022