Skip to content

Commit

Permalink
hotfix: module not found
Browse files Browse the repository at this point in the history
  • Loading branch information
kaioken committed Dec 30, 2024
1 parent 3637c2d commit e3d1e11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.24.0",
"version": "0.24.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ import {
Contact,
FilesystemMapper,
Event,
Workflow,
} from './modules';

import { setContext } from '@apollo/client/link/context';
import Settings from './modules/settings';
import { Workflow } from 'modules/workflow';

export * from './types';
export * from './queries';
Expand Down
3 changes: 2 additions & 1 deletion src/modules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ export * from './organization';
export * from './tags';
export * from './receiver';
export * from './contact';
export * from './event';
export * from './event';
export * from './workflow';

0 comments on commit e3d1e11

Please sign in to comment.