diff --git a/package-lock.json b/package-lock.json index bd5523fc..384ed7a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@prefecthq/vue-compositions", - "version": "0.1.23", + "version": "0.1.24", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@prefecthq/vue-compositions", - "version": "0.1.23", + "version": "0.1.24", "devDependencies": { "@prefecthq/eslint-config": "1.0.9", "@testing-library/vue": "^6.4.2", diff --git a/package.json b/package.json index 4ac982c0..d9a61445 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@prefecthq/vue-compositions", "private": false, - "version": "0.1.23", + "version": "0.1.24", "description": "A collection of reusable vue compositions.", "main": "index.ts", "scripts": { diff --git a/src/useSubscription/index.ts b/src/useSubscription/index.ts index 55db0ab4..09b39a1e 100644 --- a/src/useSubscription/index.ts +++ b/src/useSubscription/index.ts @@ -1,4 +1,4 @@ -export { createActions } from './utilities/actions' +export * from './utilities/actions' export * from './models' export * from './types' export * from './useSubscription' \ No newline at end of file diff --git a/src/useSubscription/utilities/index.ts b/src/useSubscription/utilities/index.ts new file mode 100644 index 00000000..af87e3c2 --- /dev/null +++ b/src/useSubscription/utilities/index.ts @@ -0,0 +1,3 @@ +export * from './actions' +export * from './reactivity' +export * from './subscriptions'