├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── global.ts ├── index.ts ├── namespaced.ts ├── util.ts └── wrapper.ts ├── tests ├── global-actions.test.ts ├── global-getters.test.ts ├── global-mutations.test.ts ├── global-state.test.ts ├── namespaced-actions.test.ts ├── namespaced-getters.test.ts ├── namespaced-helpers.test.ts ├── namespaced-mutations.test.ts ├── namespaced-state.test.ts └── utils │ └── local-vue.ts ├── tsconfig.json └── tsconfig.test.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tests 3 | .idea/ 4 | .github 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/package.json -------------------------------------------------------------------------------- /src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/src/global.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/namespaced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/src/namespaced.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/src/wrapper.ts -------------------------------------------------------------------------------- /tests/global-actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/global-actions.test.ts -------------------------------------------------------------------------------- /tests/global-getters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/global-getters.test.ts -------------------------------------------------------------------------------- /tests/global-mutations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/global-mutations.test.ts -------------------------------------------------------------------------------- /tests/global-state.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/global-state.test.ts -------------------------------------------------------------------------------- /tests/namespaced-actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/namespaced-actions.test.ts -------------------------------------------------------------------------------- /tests/namespaced-getters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/namespaced-getters.test.ts -------------------------------------------------------------------------------- /tests/namespaced-helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/namespaced-helpers.test.ts -------------------------------------------------------------------------------- /tests/namespaced-mutations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/namespaced-mutations.test.ts -------------------------------------------------------------------------------- /tests/namespaced-state.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/namespaced-state.test.ts -------------------------------------------------------------------------------- /tests/utils/local-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tests/utils/local-vue.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpress/vuex-composition-helpers/HEAD/tsconfig.test.json --------------------------------------------------------------------------------