A tiny state management library for Vue Composition API.

Overview

logo

version Build Test codecov minzipped size typescript


vue-unstated

A tiny state management library for Vue Composition API based on unstated-next which is for React.

🏇 Demo

Edit [vue-unstated DEMO] Todo

🔌 Installation

$ npm install --save vue-unstated

or

$ yarn add vue-unstated

🏄 Usage

use/counter.js

import { reactive } from '@vue/composition-api' // Vue 2 with @vue/composition-api
import { reactive } from 'vue' // or Vue 3
import { createContainer } from 'vue-unstated'

const useCounter = (initialState = { count: 0 }) => {
  const state = reactive(initialState)

  const increment = () => {
    state.count++
  }

  return { state, increment }
}

export const counterContainer = createContainer(useCounter)

Parent.vue

<script>
import { counterContainer } from 'use/counter'
import Child from 'Child.vue'

export default {
  components: { Child },
  setup() {
    // You can share same state in its child nodes!!
    const { state, increment } = counterContainer.provide()

    return {
      count: state.count,
      increment,
    }
  }
}
</script>

Child.vue

<script>
import { counterContainer } from 'use/counter'

export default {
  setup() {
    // You can use same state with Parent.vue!!
    const { state, increment } = counterContainer.useContainer()

    return {
      count: state.count,
      increment,
    }
  }
}
</script>

🏁 LICENSE

MIT

Comments
  • ⬆️ Bump @vue/composition-api from 0.5.0 to 0.6.7

    ⬆️ Bump @vue/composition-api from 0.5.0 to 0.6.7

    Bumps @vue/composition-api from 0.5.0 to 0.6.7.

    Release notes

    Sourced from @vue/composition-api's releases.

    v0.6.7

    Bug Fixes

    • toRefs: do not warn when toRefs is called in a prop value (#405) (048b6d3)
    • type: improve defineComponent type for option apis (#406) (1c64108)

    Features

    v0.6.6

    Reverts

    v0.6.5

    Bug Fixes

    • watchEffect: prevent recursive calls when using flush:sync (#389) (f7f1e77)
    • not unwrapping markRaw objects (#386) (575d100)
    • unwrap refs returned by data (#387) (1f07075)

    v0.6.4

    Bug Fixes

    • setup: call stack exceeded when returning circular dependency (#380) (66f58ba)
    • setup: Vue.extend(Comp).extend({}) - vue-test-utils (#383) (ce932bf)

    v0.6.3

    Bug Fixes

    v0.6.2

    Bug Fixes

    Changelog

    Sourced from @vue/composition-api's changelog.

    0.6.7 (2020-06-24)

    Bug Fixes

    • toRefs: do not warn when toRefs is called in a prop value (#405) (048b6d3)
    • type: improve defineComponent type for option apis (#406) (1c64108)

    Features

    0.6.6 (2020-06-21)

    Reverts

    0.6.5 (2020-06-19)

    Bug Fixes

    • watchEffect: prevent recursive calls when using flush:sync (#389) (f7f1e77)
    • not unwrapping markRaw objects (#386) (575d100)
    • unwrap refs returned by data (#387) (1f07075)

    0.6.4 (2020-06-16)

    Bug Fixes

    • setup: call stack exceeded when returning circular dependency (#380) (66f58ba)
    • setup: Vue.extend(Comp).extend({}) - vue-test-utils (#383) (ce932bf)

    Commits
    Maintainer changes

    This version was pushed to npm by antfu, a new releaser for @vue/composition-api 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)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies 
    opened by dependabot-preview[bot] 3
  • ⬆️ Bump prettier from 2.0.5 to 2.1.1

    ⬆️ Bump prettier from 2.0.5 to 2.1.1

    Bumps prettier from 2.0.5 to 2.1.1.

    Release notes

    Sourced from prettier's releases.

    2.1.1

    🔗Changelog

    2.1.0

    diff

    🔗 Release Notes

    Changelog

    Sourced from prettier's changelog.

    2.1.1

    diff

    Fix format on html with frontMatter (#9043 by @fisker)

    <!-- Input -->
    ---
    layout: foo
    ---
    

    Test <a href="https://prettier.io&quot;&gt;abc&lt;/a>.

    <!-- Prettier stable --> TypeError: Cannot read property 'end' of undefined ...

    <!-- Prettier master -->

    layout: foo

    Test <a href="https://prettier.io&quot;&gt;abc&lt;/a>.

    Fix broken format for ...infer T (#9044 by @fisker)

    // Input
    type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;
    

    // Prettier stable type Tail<T extends any[]> = T extends [infer U, ...(infer R)] ? R : never;

    // Prettier master type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;

    Fix format on style[lang="sass"] (#9051 by @fisker)

    <!-- Input -->
    <style lang="sass">
    .hero
      @include background-centered
    </tr></table> ... (truncated)
    
    Commits
    Maintainer changes

    This version was pushed to npm by sosukesuzuki, a new releaser for prettier 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)
    • 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-terser from 5.3.0 to 7.0.2

    ⬆️ Bump rollup-plugin-terser from 5.3.0 to 7.0.2

    Bumps rollup-plugin-terser from 5.3.0 to 7.0.2.

    Release notes

    Sourced from rollup-plugin-terser's releases.

    v7.0.2

    Fixes the latest tag (see TrySound/rollup-plugin-terser#90)

    v7.0.0

    Upgraded to terser 5 (thanks to @chicoxyzzy) and serialize-javascript 4

    v6.1.0

    Added support for native es modules in node. Now this works with "type": "module" in package.json.

    rollup.config.mjs

    import { terser } from 'rollup-plugin-terser';
    export default {
      ...
    }
    

    v6.0.0

    • node.js < v10 support is dropped
    • rollup < v2 support is dropped
    • sourcemap option is inferred from rollup options, please remove from your config
    • include/exclude options are dropped in favour of output plugins, see here
    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)
    • 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 vue-template-compiler from 2.6.11 to 2.6.12

    ⬆️ Bump vue-template-compiler from 2.6.11 to 2.6.12

    Bumps vue-template-compiler from 2.6.11 to 2.6.12.

    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)
    • 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 from 2.25.0 to 2.26.11

    ⬆️ Bump rollup from 2.25.0 to 2.26.11

    Bumps rollup from 2.25.0 to 2.26.11.

    Release notes

    Sourced from rollup's releases.

    v2.26.11

    2020-09-08

    Bug Fixes

    • Do not fail for unknown nodes as if statement branches (#3769)

    Pull Requests

    v2.26.10

    2020-09-04

    Bug Fixes

    • Do not create invalid code when simplifying expressions in return statements that contain line comments (#3762)

    Pull Requests

    v2.26.9

    2020-09-01

    Bug Fixes

    • Add regular expression support to watch include/exclude types (#3754)

    Pull Requests

    • #3754: Add RegExp to the include and exclude fields of the WatcherOptions type (@dagda1)
    • #3756: Update FAQ: I think it was meant "external" instead of "other-entry.js" (@madacol)

    v2.26.8

    2020-08-29

    Bug Fixes

    • Make sure that both unresolved and resolved ids are passed to the external option in all cases (#3753)

    Pull Requests

    v2.26.7

    2020-08-28

    Bug Fixes

    • Avoid invalid code when rendering hoisted variable declarations from dead branches (#3752)
    • Mark the options parameter of this.parse as optional for TypeScript plugins (#3750)

    Pull Requests

    v2.26.6

    2020-08-27

    Changelog

    Sourced from rollup's changelog.

    2.26.11

    2020-09-08

    Bug Fixes

    • Do not fail for unknown nodes as if statement branches (#3769)

    Pull Requests

    2.26.10

    2020-09-04

    Bug Fixes

    • Do not create invalid code when simplifying expressions in return statements that contain line comments (#3762)

    Pull Requests

    2.26.9

    2020-09-01

    Bug Fixes

    • Add regular expression support to watch include/exclude types (#3754)

    Pull Requests

    • #3754: Add RegExp to the include and exclude fields of the WatcherOptions type (@dagda1)
    • #3756: Update FAQ: I think it was meant "external" instead of "other-entry.js" (@madacol)

    2.26.8

    2020-08-29

    Bug Fixes

    • Make sure that both unresolved and resolved ids are passed to the external option in all cases (#3753)

    Pull Requests

    2.26.7

    2020-08-28

    Bug Fixes

    • Avoid invalid code when rendering hoisted variable declarations from dead branches (#3752)
    • Mark the options parameter of this.parse as optional for TypeScript plugins (#3750)

    Pull Requests

    2.26.6

    2020-08-27

    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)
    • 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 @types/jest from 26.0.4 to 26.0.12

    ⬆️ Bump @types/jest from 26.0.4 to 26.0.12

    Bumps @types/jest from 26.0.4 to 26.0.12.

    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)
    • 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 @babel/core from 7.9.0 to 7.11.5

    ⬆️ Bump @babel/core from 7.9.0 to 7.11.5

    Bumps @babel/core from 7.9.0 to 7.11.5.

    Release notes

    Sourced from @babel/core's releases.

    v7.11.5 (2020-08-31)

    Thanks @giovannicalo, @johanholmerin, @uhyo for their first PRs!

    :bug: Bug Fix

    • babel-helper-builder-react-jsx-experimental, babel-plugin-transform-react-jsx-development
    • babel-parser
    • @babel/eslint-plugin
    • babel-plugin-proposal-function-bind
      • #12000 fix(plugin-proposal-function-bind): fix invalid code emitted for ::super.foo (@uhyo)

    :nail_care: Polish

    :house: Internal

    Committers: 6

    v7.11.4 (2020-08-20)

    Thanks @Monchi for their first PR to Babel!

    :bug: Bug Fix

    • babel-helper-replace-supers
    • babel-core
      • #11974 Ensure import() is not transpiled in babel-core published source (@JLHwung)
    • babel-parser
    Changelog

    Sourced from @babel/core's changelog.

    v7.11.5 (2020-08-31)

    :bug: Bug Fix

    • babel-helper-builder-react-jsx-experimental, babel-plugin-transform-react-jsx-development
    • babel-parser
    • Other
    • babel-plugin-proposal-function-bind
      • #12000 fix(plugin-proposal-function-bind): fix invalid code emitted for ::super.foo (@uhyo)

    :nail_care: Polish

    :house: Internal

    v7.11.4 (2020-08-20)

    :bug: Bug Fix

    :house: Internal

    Commits
    Maintainer changes

    This version was pushed to npm by jlhwung, a new releaser for @babel/core 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)
    • 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 @babel/preset-env from 7.10.4 to 7.11.5

    ⬆️ Bump @babel/preset-env from 7.10.4 to 7.11.5

    Bumps @babel/preset-env from 7.10.4 to 7.11.5.

    Release notes

    Sourced from @babel/preset-env's releases.

    v7.11.5 (2020-08-31)

    Thanks @giovannicalo, @johanholmerin, @uhyo for their first PRs!

    :bug: Bug Fix

    • babel-helper-builder-react-jsx-experimental, babel-plugin-transform-react-jsx-development
    • babel-parser
    • @babel/eslint-plugin
    • babel-plugin-proposal-function-bind
      • #12000 fix(plugin-proposal-function-bind): fix invalid code emitted for ::super.foo (@uhyo)

    :nail_care: Polish

    :house: Internal

    Committers: 6

    v7.11.4 (2020-08-20)

    Thanks @Monchi for their first PR to Babel!

    :bug: Bug Fix

    • babel-helper-replace-supers
    • babel-core
      • #11974 Ensure import() is not transpiled in babel-core published source (@JLHwung)
    • babel-parser
    Changelog

    Sourced from @babel/preset-env's changelog.

    v7.11.5 (2020-08-31)

    :bug: Bug Fix

    • babel-helper-builder-react-jsx-experimental, babel-plugin-transform-react-jsx-development
    • babel-parser
    • Other
    • babel-plugin-proposal-function-bind
      • #12000 fix(plugin-proposal-function-bind): fix invalid code emitted for ::super.foo (@uhyo)

    :nail_care: Polish

    :house: Internal

    v7.11.4 (2020-08-20)

    :bug: Bug Fix

    :house: Internal

    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)
    • 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 @vue/test-utils from 1.0.3 to 1.0.5

    ⬆️ Bump @vue/test-utils from 1.0.3 to 1.0.5

    Bumps @vue/test-utils from 1.0.3 to 1.0.5.

    Release notes

    Sourced from @vue/test-utils's releases.

    v1.0.5

    This release is mostly fixing small things, with some better support for @vue/composition-api plugin users. 4 bugfixes from 4 separate users, the Vue community is too cool 😎

    Features and Fixes

    fix: handle shallowMount on components with v-if and scoped slots (#1663) by @xanf fix: extend Vue parent with options to support accessing root for better @vue/composition-api fixing (#1655) support by @lmiller1990 fix: Match how the Vue runtime executes scoped slots #1660 by @sirlancelot fix: Wrapper array consistency (#1650) by @AtofStryker

    Dependencies and Misc

    build(rollup): upgrade rollup from 1.x to 2.x (#1645) @AtofStryker Upgrade Vuepress, Flow, and misc (#1646) @AtofStryker Upgrade Eslint (#1647)

    Great job everyone! Especially @AtofStryker with several significant PRs.

    v1.0.4

    Features

    • allow array for multiselect .setValue() method (#1554)

    Fixes

    • iife build (#1555)
    • allow using findComponent on a functional component (#1593)
    • fix(setprops): allowed for setProps to be synced with nextTick intervals (#1618)

    Other

    • upgrade from babel 6 to babel 7 (#1628)
    • migrate to jest for test runner (#1629)

    There was some big infrastructure changes (Jest, Babel version) in this release with #1629 by @AtofStryker. Thanks a lot! If this has introduced any bugs, please file an issue.

    Changelog

    Sourced from @vue/test-utils's changelog.

    1.0.5 (2020-08-29)

    Note: Version bump only for package @vue/test-utils

    1.0.4 (2020-08-17)

    Bug Fixes

    • setprops: allowed for setProps to be synced with nextTick intervals (#1618) (9a3e6f9), closes #1419
    • allow using findComponent on a functional component (#1593) (2d6b497)

    1.0.2 (2020-05-06)

    Note: Version bump only for package @vue/test-utils

    1.0.0 (2020-05-05)

    Features

    1.0.0-beta.33 (2020-04-08)

    Bug Fixes

    • test-utils: fix cancelable attribute in dom events (#1460) (b1a532a)
    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)
    • 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 @babel/core from 7.9.0 to 7.11.4

    ⬆️ Bump @babel/core from 7.9.0 to 7.11.4

    Bumps @babel/core from 7.9.0 to 7.11.4.

    Release notes

    Sourced from @babel/core's releases.

    v7.11.4 (2020-08-20)

    Thanks @Monchi for their first PR to Babel!

    :bug: Bug Fix

    :house: Internal

    • Other
    • babel-parser
    • babel-helpers
    • babel-helper-transform-fixture-test-runner
    • babel-core, babel-helper-transform-fixture-test-runner, babel-plugin-proposal-object-rest-spread, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-destructuring, babel-plugin-transform-react-jsx-source, babel-plugin-transform-spread
    • babel-helper-bindify-decorators, babel-helper-call-delegate, babel-helper-explode-assignable-expression, babel-helper-explode-class, babel-helper-remap-async-to-generator, babel-helper-replace-supers
      • #11937 Move some @babel/traverse from deps to devDeps (@Monchi)

    Committers: 6

    v7.11.3 (2020-08-08)

    Thanks @AleksRap for their first PR!

    Changelog

    Sourced from @babel/core's changelog.

    v7.11.4 (2020-08-20)

    :bug: Bug Fix

    :house: Internal

    • Other
    • babel-parser
    • babel-helpers
    • babel-helper-transform-fixture-test-runner
    • babel-core, babel-helper-transform-fixture-test-runner, babel-plugin-proposal-object-rest-spread, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-destructuring, babel-plugin-transform-react-jsx-source, babel-plugin-transform-spread
    • babel-helper-bindify-decorators, babel-helper-call-delegate, babel-helper-explode-assignable-expression, babel-helper-explode-class, babel-helper-remap-async-to-generator, babel-helper-replace-supers
      • #11937 Move some @babel/traverse from deps to devDeps (@Monchi)

    v7.11.3 (2020-08-08)

    :bug: Bug Fix

    :nail_care: Polish

    • babel-parser
      • #11921 refactor: add recoverable error on accessorIsGenerator (@JLHwung)

    :house: Internal

    Commits
    Maintainer changes

    This version was pushed to npm by jlhwung, a new releaser for @babel/core 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)
    • 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 @types/jest from 26.0.4 to 26.0.10

    ⬆️ Bump @types/jest from 26.0.4 to 26.0.10

    Bumps @types/jest from 26.0.4 to 26.0.10.

    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)
    • 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
  • chore(deps-dev): bump rollup from 2.33.0 to 2.64.0

    chore(deps-dev): bump rollup from 2.33.0 to 2.64.0

    Bumps rollup from 2.33.0 to 2.64.0.

    Release notes

    Sourced from rollup's releases.

    v2.64.0

    2022-01-14

    Features

    • Allow inspecting cached modules and forcing them to be transformed again via shouldTransformCachedModule (#4320)
    • Do not wait for the config file to be parsed in watch mode if it is updated before that (#4344)

    Bug Fixes

    • Do not mutate objects returned as meta from the resolveId hook (#4347)

    Pull Requests

    v2.63.0

    2022-01-04

    Features

    • Report a helpful error if rollup exits due to an empty event loop when using this.load (#4320)
    • Allow directly mutating ModuleInfo.meta for modules and never replace this object (#4328)
    • Detect additional side effect free array prototype methods (#4332)

    Bug Fixes

    • Do not watch if CLI watch options are specified but --watch is missing (#4335)

    Pull Requests

    v2.62.0

    2021-12-24

    Features

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.64.0

    2022-01-14

    Features

    • Allow inspecting cached modules and forcing them to be transformed again via shouldTransformCachedModule (#4320)
    • Do not wait for the config file to be parsed in watch mode if it is updated before that (#4344)

    Bug Fixes

    • Do not mutate objects returned as meta from the resolveId hook (#4347)

    Pull Requests

    2.63.0

    2022-01-04

    Features

    • Report a helpful error if rollup exits due to an empty event loop when using this.load (#4320)
    • Allow directly mutating ModuleInfo.meta for modules and never replace this object (#4328)
    • Detect additional side effect free array prototype methods (#4332)

    Bug Fixes

    • Do not watch if CLI watch options are specified but --watch is missing (#4335)

    Pull Requests

    2.62.0

    2021-12-24

    ... (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)
    dependencies 
    opened by dependabot[bot] 0
  • chore(deps): bump follow-redirects from 1.13.0 to 1.14.7 in /examples/demo-vue-2

    chore(deps): bump follow-redirects from 1.13.0 to 1.14.7 in /examples/demo-vue-2

    Bumps follow-redirects from 1.13.0 to 1.14.7.

    Commits
    • 2ede36d Release version 1.14.7 of the npm package.
    • 8b347cb Drop Cookie header across domains.
    • 6f5029a Release version 1.14.6 of the npm package.
    • af706be Ignore null headers.
    • d01ab7a Release version 1.14.5 of the npm package.
    • 40052ea Make compatible with Node 17.
    • 86f7572 Fix: clear internal timer on request abort to avoid leakage
    • 2e1eaf0 Keep Authorization header on subdomain redirects.
    • 2ad9e82 Carry over Host header on relative redirects (#172)
    • 77e2a58 Release version 1.14.4 of the npm package.
    • 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) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies 
    opened by dependabot[bot] 0
  • chore(deps): bump follow-redirects from 1.13.0 to 1.14.7 in /examples/demo-vue-3

    chore(deps): bump follow-redirects from 1.13.0 to 1.14.7 in /examples/demo-vue-3

    Bumps follow-redirects from 1.13.0 to 1.14.7.

    Commits
    • 2ede36d Release version 1.14.7 of the npm package.
    • 8b347cb Drop Cookie header across domains.
    • 6f5029a Release version 1.14.6 of the npm package.
    • af706be Ignore null headers.
    • d01ab7a Release version 1.14.5 of the npm package.
    • 40052ea Make compatible with Node 17.
    • 86f7572 Fix: clear internal timer on request abort to avoid leakage
    • 2e1eaf0 Keep Authorization header on subdomain redirects.
    • 2ad9e82 Carry over Host header on relative redirects (#172)
    • 77e2a58 Release version 1.14.4 of the npm package.
    • 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) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @types/jest from 26.0.14 to 27.4.0

    chore(deps-dev): bump @types/jest from 26.0.14 to 27.4.0

    Bumps @types/jest from 26.0.14 to 27.4.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 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)
    dependencies 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump shipjs from 0.22.0 to 0.24.1

    chore(deps-dev): bump shipjs from 0.22.0 to 0.24.1

    Bumps shipjs from 0.22.0 to 0.24.1.

    Release notes

    Sourced from shipjs's releases.

    v0.24.1

    0.24.1 (2021-12-07)

    Bug Fixes

    v0.24.0

    0.24.0 (2021-09-21)

    Features

    v0.23.3

    0.23.3 (2021-06-14)

    Bug Fixes

    • prepare: add missing version in the changelog (#954) (2a8e7c5)

    v0.23.2

    0.23.2 (2021-04-12)

    Bug Fixes

    • print out error when changelog fails (d40b041)

    v0.23.1

    0.23.1 (2021-03-09)

    Bug Fixes

    • prepare: allow shouldPrepare callback to run during --dry-run (#947) (8602ba0)

    v0.23.0

    0.23.0 (2020-11-06)

    BREAKING CHANGE

    If you don't use Ship.js in a monorepo, this breaking change doesn't affect you.

    If you do, we have a good addition for you. Ship.js will update the versions of the dependencies in the monorepo. You can learn more from here.

    ... (truncated)

    Changelog

    Sourced from shipjs's changelog.

    0.24.1 (2021-12-07)

    Bug Fixes

    0.24.0 (2021-09-21)

    Features

    0.23.3 (2021-06-14)

    Bug Fixes

    • prepare: add missing version in the changelog (#954) (2a8e7c5)

    0.23.2 (2021-04-12)

    Bug Fixes

    • print out error when changelog fails (d40b041)

    0.23.1 (2021-03-09)

    Bug Fixes

    • prepare: allow shouldPrepare callback to run during --dry-run (#947) (8602ba0)

    0.23.0 (2020-11-06)

    BREAKING CHANGE

    ... (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)
    dependencies 
    opened by dependabot[bot] 0
  • chore(deps): bump vue-demi from 0.4.1 to 0.12.1

    chore(deps): bump vue-demi from 0.4.1 to 0.12.1

    Bumps vue-demi from 0.4.1 to 0.12.1.

    Release notes

    Sourced from vue-demi's releases.

    v0.12.1

    Bug Fixes

    • import .mjs version of vue-composition-api (#105) (0e6b88e)

    Features

    v0.12.0

    Bug Fixes

    • use mjs version of VCA plugin (063dc2c)

    v0.11.4

    No release notes provided.

    v0.11.3

    Bug Fixes

    • fix switch-cli problem using pnpm (#93) (057e5c6)

    v0.11.2

    Bug Fixes

    • try fix esm on vue cli with vue2 (98185ab)

    v0.11.1

    Bug Fixes

    • update vue version range (86e9029)

    v0.11.0

    BREAKING CHANGE

    • use mjs and cjs, close #71 (8c411b0)
    • drop Node v10 and earlier.

    ... (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)
    dependencies 
    opened by dependabot[bot] 0
Releases(v0.1.2)
A state management library for react inspired by vue 3.0 reactivity api and immer

Welcome to costate ?? A state management library for react inspired by vue 3.0 reactivity api and immer costate is a tiny package that allows you to w

工业聚 7 Mar 29, 2022
📦 Fast, Simple, and Lightweight State Manager for Vue 3.0 built with composition API, inspired by Vuex.

v-bucket NPM STATUS: ?? Fast, Simple, and Lightweight State Management for Vue 3.0 built with composition API, inspired by Vuex. Table of Contents Mai

mehdi 42 Aug 10, 2022
A vue boiler plate with state management, vuex, vue-router that can be backed by a laravel restful api using jwt auth

Laravel 6 (LTS) Vue.js Frontend Boilerplate A Vue.js Frontend starter project kit template/boilerplate with Laravel 6 Backend API support. Features Re

MUWONGE HASSAN 2 Oct 12, 2021
A tiny (198 bytes) state manager for React/RN/Preact/Vue/Svelte with many atomic tree-shakable stores

A tiny (198 bytes) state manager for React/RN/Preact/Vue/Svelte with many atomic tree-shakable stores

Nano Stores 2.2k Dec 27, 2022
A library providing Vue applications with asynchronous-first state management

OverVue OverVue is a stream-based persistent state management library for Vue built on RxJS observables. While Vuex provides a robust option for handl

null 49 Apr 28, 2022
Lightweight vuex inspired centralized state management library for all kinds of javascript applications. Great for React Native.

Verx Lightweight vuex inspired centralized state management library for all kinds of javascript applications. install npm install --save verx # yarn a

Jaynti Kanani 3 Nov 4, 2019
A state management library for React combined immutable, mutable and reactive mode

Welcome to bistate ?? Create the next immutable state tree by simply modifying the current tree bistate is a tiny package that allows you to work with

工业聚 119 Jan 8, 2023
A very simple state management library.

DoxJS DoxJS is a very easy state management library, it's written in Typescript. document Elglish document 中文文档 Install yarn yarn add doxjs npm npm in

dimos 1 Apr 3, 2018
Lightweight Vue 3 composition API-compatible store pattern library with built-in undo/redo functionality.

vue-store Lightweight Vue 3 composition API-compatible store pattern library. Offers a simple alternative that is on par with VueX in terms of feature

Korijn van Golen 23 Sep 27, 2022
🗃️ Centralized State Management for Vue.js.

Vuex ?? HEADS UP! You're currently looking at Vuex 3 branch. If you're looking for Vuex 4, please check out 4.0 branch. Vuex is a state management pat

vuejs 27.9k Dec 30, 2022
Elm-inspired Application State Management for Vue.js.

VuElm It's a Vue state management inspired by Elm architecture. Concepts There are basically four elements on Elm architecture: Model, Actions, Update

Keuller Magalhães 36 May 5, 2021
A light and easy shared state management plugin for Vue

vue-shared vue-shared is a tiny (~150 lines) vue plugin for shared state management, that can be used as an alternative to Vuex. It adds a new vue opt

null 11 Jan 22, 2021
State management system for Vue.js

Vue States Vue States is a state management system for Vue.js. Checkout the examples at https://github.com/JohannesLamberts/vue-states-examples. You m

sum.cumo GmbH 149 Nov 24, 2022
Simple, unopinionated, lightweight and extensible state management for Vue 3

Simple, unopinionated, lightweight and extensible state management for Vue 3

Andrew Courtice 466 Dec 30, 2022
Simple counter with Vue.js and Vuex as state management

vuex-counter Project setup npm install Compiles and hot-reloads for development npm run serve Compiles and minifies for production npm run build Li

Kevin Hamdajani 0 Dec 30, 2021
A find Coach is a vue state management project that allows users to find coach to mentor a student

A find Coach is a vue state management project that allows users to find coach to mentor a student. A simple vue app with routing functionality and vuex management for solid SPA

Ogiogio Victor 4 Jul 2, 2022
State Management made eXtraordinarily simple and effective for Angular, React, and Vue

XSM - State Management made eXtraordinarily simple and effective for Angular, React, Vue, and Svelte. ?? Homepage Demos Angular React Svelte Vue Realw

Peter Lu 138 Sep 21, 2022
Helper functions to ease working with Vuex, Centralized State Management for Vue.js.

vuex-helpers Helper functions to ease working with Vuex, Centralized State Management for Vue.js. Development The following examples use docker and do

Wikimedia Deutschland e. V. 4 Jan 17, 2022
A very simple but powerful state management for vuejs projects.

Vuez A Simple but Powerful State Management for Vue.js projects. Vuez is a very simple but powerful state management library for Vue.js projects. Vuez

Mark Feng 42 Feb 18, 2022