Skip to content

Commit

Permalink
fix: import structure so dist folder has correct folder heirarchy (#1045
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bruuuuuuuce authored Nov 15, 2023
1 parent 0b0d490 commit bce02a6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
5 changes: 2 additions & 3 deletions packages/client-sdk-nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/client-sdk-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"license": "Apache-2.0",
"devDependencies": {
"@gomomento/common-integration-tests": "file:../common-integration-tests",
"@types/google-protobuf": "3.15.10",
"@types/jest": "27.5.2",
"@types/node": "14.18.3",
"@types/uuid": "8.3.4",
Expand All @@ -55,6 +54,7 @@
"@gomomento/generated-types": "0.96.0",
"@gomomento/sdk-core": "file:../core",
"@grpc/grpc-js": "1.9.0",
"@types/google-protobuf": "3.15.10",
"google-protobuf": "3.21.2",
"jwt-decode": "3.1.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/client-sdk-nodejs/src/topic-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {MomentoLogger} from '.';
import {PubsubClient} from './internal/pubsub-client';
import {TopicClientProps} from './topic-client-props';
import {IPubsubClient} from '@gomomento/sdk-core/dist/src/internal/clients';
import {IWebhookClient} from '../../core/src/internal/clients/pubsub/IWebhookClient';
import {IWebhookClient} from '@gomomento/sdk-core/dist/src/internal/clients/pubsub/IWebhookClient';
import {WebhookClient} from './internal/webhook-client';

/**
Expand Down
8 changes: 3 additions & 5 deletions packages/client-sdk-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/client-sdk-web/src/topic-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {PubsubClient} from './internal/pubsub-client';
import {TopicClientProps} from './topic-client-props';
import {IPubsubClient} from '@gomomento/sdk-core/dist/src/internal/clients';
import {AbstractTopicClient} from '@gomomento/sdk-core/dist/src/internal/clients/pubsub/AbstractTopicClient';
import {IWebhookClient} from '../../core/src/internal/clients/pubsub/IWebhookClient';
import {IWebhookClient} from '@gomomento/sdk-core/dist/src/internal/clients/pubsub/IWebhookClient';
import {WebhookClient} from './internal/webhook-client';

/**
Expand Down

0 comments on commit bce02a6

Please sign in to comment.