Skip to content

Commit

Permalink
Merge pull request #9 from blinkafrica/release
Browse files Browse the repository at this point in the history
patch: modified how modules are exported
  • Loading branch information
zerothebahdman committed Apr 7, 2024
2 parents 8e9f428 + 4c32ba3 commit 1fbed44
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 27 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blinkclaud/octobus",
"version": "0.3.0",
"version": "0.3.1",
"description": "A toolkit for Blink HQ's microservices",
"author": "Blink HQ",
"private": false,
Expand Down
4 changes: 4 additions & 0 deletions src/http/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from './agent';
export * from './errors';
export * from './jwt';
export * from './wrapper';
2 changes: 2 additions & 0 deletions src/log/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './logger';
export * from './serializers';
20 changes: 0 additions & 20 deletions src/log/provider.ts

This file was deleted.

10 changes: 4 additions & 6 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export * from './log/logger';
export * from './http/agent';
export * from './http/errors';
export * as jwt from './http/jwt';
export * from './http/wrapper';
export * from './mq/worker';
export * from './http';
export * from './mq';
export * from './log';
export * from './validator';
export * from './retry';
1 change: 1 addition & 0 deletions src/validator/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './yup.validation';

0 comments on commit 1fbed44

Please sign in to comment.