added more description in package.json and expose stuff in the indexes files since it was building actually nothing
Some checks failed
Publish to npm / publish (release) Failing after 42s

This commit is contained in:
Mathias Beaulieu-Duncan 2025-06-23 17:34:39 -04:00
parent 18eaa2daaa
commit 91717d4411
Signed by: mathias
GPG Key ID: 1C16CF05BAF9162D
5 changed files with 44 additions and 6 deletions

View File

@ -1,6 +1,18 @@
{
"name": "@openharbor/vue-data",
"author": "Open Harbor",
"author": {
"name": "Open Harbor",
"email": "npm@openharbor.com",
"url": "https://git.openharbor.io"
},
"homepage": "https://git.openharbor.io/Open-Harbor/vue-data",
"repository": {
"type": "git",
"url": "https://git.openharbor.io/Open-Harbor/vue-data.git"
},
"bugs": {
"url": "https://git.openharbor.io/Open-Harbor/vue-data/issues"
},
"private": false,
"license": "MIT",
"version": "1.0.0",
@ -43,5 +55,15 @@
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"keywords": [
"vue",
"vue3",
"composition-api",
"data-source",
"cqrs",
"openharbor",
"typescript",
"frontend"
]
}

View File

@ -0,0 +1,3 @@
export { useHttpDataSource, type UseHttpDataSourceOptions } from './use-http-data-source';
export { useSingleDataSource, type UseSingleDataSourceOptions } from './use-single-data-source';
export { useListDataSource, type UseListDataSourceOptions } from './use-list-data-source';

View File

@ -1,5 +1,3 @@
// src/composables/use-http-data-source.ts
import { ref, readonly, watch, type Ref } from 'vue';
import {
type IQueryCriteria,

View File

@ -1,5 +1,3 @@
// src/composables/use-single-data-source.ts
import { ref, readonly, watch, type Ref } from 'vue';
import {
type IQueryCriteria,

View File

@ -0,0 +1,17 @@
export * from './composables';
export {
type IQueryCriteria,
type ICommand,
type IQueryExecutionResult,
type IQueryExecutionGroupResult,
type IDataSourceErrorMessage,
type IDataSourceValidationError,
type IDataSourceError,
type IResolveCommandModelEvent,
type IDataSourceCommandAdapterOptions,
type IDataSourceQueryAdapterOptions,
type IDataSourceTransportOptions,
type IDataSourceOptions,
type IDataSource
} from './core/types';