Skip to content

Commit

Permalink
s/index.ts/withSentryConfig.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Nov 22, 2022
1 parent 955a1b2 commit b945fef
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/nextjs/src/index.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const deprecatedIsBuild = (): boolean => isBuild();
export { deprecatedIsBuild as isBuild };

export type { SentryWebpackPluginOptions } from './config/types';
export { withSentryConfig } from './config';
export { withSentryConfig } from './config/withSentryConfig';
export {
withSentryGetServerSideProps,
withSentryGetStaticProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/test/config/testUtils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { WebpackPluginInstance } from 'webpack';

import { withSentryConfig } from '../../src/config';
import {
BuildContext,
EntryPropertyFunction,
Expand All @@ -10,6 +9,7 @@ import {
WebpackConfigObject,
} from '../../src/config/types';
import { constructWebpackConfigFunction, SentryWebpackPlugin } from '../../src/config/webpack';
import { withSentryConfig } from '../../src/config/withSentryConfig';
import { defaultsObject, runtimePhase } from './fixtures';

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/test/types/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NextConfig } from 'next';

import { withSentryConfig } from '../../src/config';
import { withSentryConfig } from '../../src/config/withSentryConfig';

const config: NextConfig = {
hideSourceMaps: true,
Expand Down

0 comments on commit b945fef

Please sign in to comment.