Include dist in typescript defs: Pass #2
This commit is contained in:
Vendored
+2
-1
@@ -17,4 +17,5 @@ declare const BunMariaDB: {
|
||||
};
|
||||
};
|
||||
export default BunMariaDB;
|
||||
export type { BunMariaDBConfig, BUN_MARIADB_DatabaseSchemaType, BUN_MARIADB_TableSchemaType, BUN_MARIADB_FieldSchemaType, BUN_MARIADB_IndexSchemaType, BUN_MARIADB_UniqueConstraintSchemaType, BUN_MARIADB_ForeignKeyType, DBResponseObject, ServerQueryParam, } from "./types";
|
||||
export type * from "./types";
|
||||
export { UsersOmitedFields, MariaDBCollations, MariaDBCharsets, TextFieldTypesArray, BUN_MARIADB_DATATYPES, MariaDBIndexTypes, ServerQueryOperators, ServerQueryEqualities, SQlComparisons, DataCrudRequestMethods, DataCrudRequestMethodsLowerCase, DsqlCrudActions, QueryFields, DockerComposeServices, IndexTypes, DefaultFields, RequiredENVs, } from "./types";
|
||||
|
||||
Vendored
+1
@@ -19,3 +19,4 @@ const BunMariaDB = {
|
||||
},
|
||||
};
|
||||
export default BunMariaDB;
|
||||
export { UsersOmitedFields, MariaDBCollations, MariaDBCharsets, TextFieldTypesArray, BUN_MARIADB_DATATYPES, MariaDBIndexTypes, ServerQueryOperators, ServerQueryEqualities, SQlComparisons, DataCrudRequestMethods, DataCrudRequestMethodsLowerCase, DsqlCrudActions, QueryFields, DockerComposeServices, IndexTypes, DefaultFields, RequiredENVs, } from "./types";
|
||||
|
||||
+6
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@moduletrace/bun-mariadb",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.8",
|
||||
"description": "Schema-driven MariaDB manager for Bun",
|
||||
"author": "Benjamin Toby",
|
||||
"license": "MIT",
|
||||
@@ -12,6 +12,11 @@
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./types": {
|
||||
"types": "./dist/types/index.d.ts",
|
||||
"import": "./dist/types/index.js",
|
||||
"default": "./dist/types/index.js"
|
||||
}
|
||||
},
|
||||
"bin": {
|
||||
|
||||
+19
-10
@@ -23,14 +23,23 @@ const BunMariaDB = {
|
||||
|
||||
export default BunMariaDB;
|
||||
|
||||
export type {
|
||||
BunMariaDBConfig,
|
||||
BUN_MARIADB_DatabaseSchemaType,
|
||||
BUN_MARIADB_TableSchemaType,
|
||||
BUN_MARIADB_FieldSchemaType,
|
||||
BUN_MARIADB_IndexSchemaType,
|
||||
BUN_MARIADB_UniqueConstraintSchemaType,
|
||||
BUN_MARIADB_ForeignKeyType,
|
||||
DBResponseObject,
|
||||
ServerQueryParam,
|
||||
export type * from "./types";
|
||||
export {
|
||||
UsersOmitedFields,
|
||||
MariaDBCollations,
|
||||
MariaDBCharsets,
|
||||
TextFieldTypesArray,
|
||||
BUN_MARIADB_DATATYPES,
|
||||
MariaDBIndexTypes,
|
||||
ServerQueryOperators,
|
||||
ServerQueryEqualities,
|
||||
SQlComparisons,
|
||||
DataCrudRequestMethods,
|
||||
DataCrudRequestMethodsLowerCase,
|
||||
DsqlCrudActions,
|
||||
QueryFields,
|
||||
DockerComposeServices,
|
||||
IndexTypes,
|
||||
DefaultFields,
|
||||
RequiredENVs,
|
||||
} from "./types";
|
||||
|
||||
+1
-1
@@ -25,5 +25,5 @@
|
||||
"outDir": "dist"
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules"]
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user